http://www.MyProxySearch.com Another DP'er told me it wasnt working, so after checking it, I am confused as to why it isnt loading when hitting the browse now button in php. Thanks if someone can check it out, I would appreciate it. Thank You
send me the code and i will take a look, i am not great but i might be able to help. *Edit, I see your problem, send me the index.html file and i will fix it
you dont have any opening <form> tag which the javascript on the "Browse Now" button tries to submit to a form that doesnt exist so it simply craps out and does nothing you do have two close </form> tags but no opening... should be an easy fix if the code is provided
<script src="javascript.js" type="text/javascript"></script> <!-- --> <table bordercolor="#FFFFFF" style="width: 100%"> <tr> <td colspan="2" class="option" style="width: 20%"><div align="center"></div></td> </tr> <tr> <td colspan="2" class="option" style="width: 20%"><div align="center"><a href="javascript:bookmarksite('MyProxySearch', 'http://www.myproxysearch.com')">Bookmark this site!</a></div></td> </tr> <tr> <td colspan="2" class="option" style="width: 20%"><div align="center"><a href="http://www.ecarsite.com/Chevrolet_Corvette_det.html">Take 30 seconds to fill out a free quote form on the 2007 </a><a href="http://www.ecarsite.com/Chevrolet_Corvette_det.html">Chevey Corvette</a></div></td> </tr> <tr> <td colspan="2" class="option" style="width: 20%"><div align="center"><span class="style13"><a href="http://www.MyProxySearch.com">PHP-Proxy version</a> (For fast, normal browsing) |<a href="http://MyProxySearch.com/cgi.html"> CGI-Proxy version</a> (For Myspace, forums, logins...)</span></div></td> </tr> <tr><td bordercolor="#FFFFFF" class="option" style="width: 20%">TYPE URL </td> <td bordercolor="#FFFFFF" class="option" style="width: 80%"> <input type="text" size="40" name="url" value="http://" /> <input type="submit" height="60" width="30" name="browse" value="BROWSE NOW!" onClick="return submit_form();" /> <br />
the actual source of the php would need to be totally included... the problem is the <form> tag is missing as stated above... if you want, rename the file with ".php" extension to something like ".inc" and upload that to your server. Post that link on here or you can PM me... i will take a look and see if I can fix it. you basically will be adding a line of code like this: <form name="browse" action="file.php"> Code (markup): the only problem is I don't know what file.php should be and I would need to see the entire script source to actually know.