Posted by jah on 06/25/06 15:43
I made the following code which works just fine in Firefox, but when I
tested it in IE nothing at all happens. The expected reaction would be
that my index.php file is called with the parameters specified when I
press the search button.
print ("<table class=\"MenuNormal\" border=\"0\" cellpadding=\"5\"
cellspacing=\"2\" width=\"100%\" \n") ;
printf("<form method=post
action=\"index.php?Menu=%s&Action=search\">", $Menu) ;
printf(" <tr><td><input type=\"text\" name=\"TextSearch\"
value=\"%s\" size=\"15\" maxlength=\"100\"></td></tr>\n", $searchdata)
;
printf(" <tr><td><input type=\"submit\"
value=\"Søg\" name=\"SearchData\"></td></tr>\n") ;
printf("</form>\n") ;
printf("</table>\n") ;
Anybody know what is wrong here ?
[Back to original message]
|