Ok, I have this code. It works, on Mac, Linux, and Windows.
include("./templates/user_top.php");
print "<form name=\"denypermit\" action=\"./city_denypermit.php\" method=\"post\">";
print "<CENTER><BR>";
print "<hr size=2 noshade color=black";
print "<BR><font face=\"arial,ms sans serif\" size=4>Reason for Project Denial<BR><BR>";
print "<textarea name=\"denynote\" cols=40 rows=5></textarea>";
print "<BR><BR><hr size=2 noshade color=black>";
print "<input type=\"hidden\" name=\"pernum\" value=\"$pernum\">";
print "<input type=\"hidden\" name=\"sure\" value=\"yes\">";
print "<input type=\"submit\" value=\"Deny\"></center></form>";
include("./templates/user_bottom.php");
This is the exact same code, with the form tag 2 lines down and it works only on Mac. Any logical reasons why?
include("./templates/user_top.php");
print "<CENTER><BR>";
print "<form name=\"denypermit\" action=\"./city_denypermit.php\" method=\"post\">";
print "<hr size=2 noshade color=black";
print "<BR><font face=\"arial,ms sans serif\" size=4>Reason for Project Denial<BR><BR>";
print "<textarea name=\"denynote\" cols=40 rows=5></textarea>";
print "<BR><BR><hr size=2 noshade color=black>";
print "<input type=\"hidden\" name=\"pernum\" value=\"$pernum\">";
print "<input type=\"hidden\" name=\"sure\" value=\"yes\">";
print "<input type=\"submit\" value=\"Deny\"></center></form>";
include("./templates/user_bottom.php");