hi folks!!
i got real good answers here before, so i thought: -why not try it again =)
is there a way to load an external htmlfile into a string... lets say i want $text = url("http://another.site.com/text.html");
and use information in that file on my own site with the help of strip, explode ereg and such?
Well, You could use this...
<?php $array = file("http://www.google.com"); foreach($array as $i) { echo "$i<br>"; }
Would display all lines of the html file...
THANX
exactly what i was looking for!!
No problem, If you need anymore help, just ask 🙂