http://proddl.com/fake-rank-checker/pr.php there is an url box. when you enter an url (for example google.com) i want it to go to http://proddl.com/fake-rank-checker/check_fake_rank.php?url=google.com but it is going to http://proddl.com/fake-rank-checker/check_fake_rank.php whatever i enter can anyone help with it?
change the form's method to "get" instead of "post" though then you will need to search for $_GET['url'] instead of $_POST['url'] in your script.
<form action="check_fake_rank.php" method="post" name="frmfakerank"> <input name="url" class="input-box-up" type="text" size="36" value="http://" /> <input name="url" class="searchbutton" value="Check Pagerank!" type="submit" /><br /> </p> HTML: If you want it to go to http://proddl.com/fake-rank-checker/check_fake_rank.php?url=google.com change method="post" HTML: to method="get" HTML: Also you forgot to close the <form> tag with </form>
You must be new here This happens a fair amount. I always like to give the benefit of the doubt (maybe they opened the thread in a new tab and have only just got to it?) but I've seen people replying with the same answer more than a day late... you'll get used to it, just pretend that they're 'quoting' you because they agree with you and wear it as a badge of honour Otherwise you'll just get cynical like the rest of us!
new here? not really... as for it happening a lot, yes it does. this time i just found it pretty ridiculous so i thought i would point it out.