For some reason, it is not working. Now when I click the Go button it's not even calling the php script.
This is the code:
SCRIPT LANGUAGE="JavaScript">
<!--
function launch(newURL, newName, newFeatures, orgName) {
var remote = open(newURL, newName, newFeatures);
if (remote.opener == null)
remote.opener = window;
remote.opener.name = orgName;
return remote;
}
function launchRemote() {
myRemote = launch("http://www.site.com/x.php", "Search Results","channelmode=0,dependent=0,directories=0,fullscreen
=1,location=0,menubar=0,resizable=0,scrollbars=0,s
tatus=0,toolbar=0,titlebar=0 ","_self");
}
// -->
</SCRIPT>
<form name="form1" method="post" ACTION="javascript:launchRemote()">
<font face="Arial, Helvetica, sans-serif" size="1" color="#000000">Enter Zip :</font>
<input type="text" name="zip" size="8">
<input type="submit" name="ZipSubmit" value="Go!">
</form>
Do u think I have made a mistake anywhere?