Page 1 of 1

Need help on URL extractor

Posted: Mon Jul 25, 2011 11:42 am
by masterblaster
I want to run locally a URL extractor, like this:
http://www.web-max.ca/PHP/misc_23.php

Re: Need help on URL extractor

Posted: Mon Jul 25, 2011 1:51 pm
by McInfo
Define $url and remove the ampersand (&) on line 7. If $url is supposed to come from user input, use $_GET['url'] or $_POST['url'].

Re: Need help on URL extractor

Posted: Mon Jul 25, 2011 1:55 pm
by masterblaster
McInfo wrote:Define $url and remove the ampersand (&) on line 7. If $url is supposed to come from user input, use $_GET['url'] or $_POST['url'].
Could you provide me a example file.php that has the input textbox and the submit button? I don't know how to code.

Re: Need help on URL extractor

Posted: Mon Jul 25, 2011 2:15 pm
by McInfo