Hi guys,
I was trying to achieve the following:
- Retrieve content of a website and assign it to a variable:
$content = file_get_contents(“http://www.somewebsite.com”) or die(“Can’t open URL”);
- Detect for all occurances of textbox stored in $content and retrieves it’s ID or Name.
Any suggestions on how this can be done? Thanks in advance.