Discussion in 'PHP' started by getatune, Oct 1, 2010.
in php I want to get (THISISWHATINEED) from a page using fopen how can I do this?
Try using: file_get_contents($filename); PHP:
file_get_contents($filename);
and to remove html tags: strip_tags(file_get_contents($filename)); PHP:
strip_tags(file_get_contents($filename));
file_get_contents($filename)
NOT that said markup should even exist in the first place, this isn't 1997.
Separate names with a comma.