Hallo zusammen,
ich habe ein konfigurationsproblem meines localen Webserver.
das Script an dem ich diese Problem fest mache ist:
<?php
echo "<body>";
echo "<form method=\"POST\" action=\"test.php\">";
echo "<table border=\"0\" width=\"100%\">";
echo "<tr>";
echo "<td width=\"100%\" align=\"center\">";
echo "<input type=\"submit\" value=\"Suchen\" name=\"suchen\">";
echo "</td>";
echo "</tr>";
echo "</table>";
echo "<p align=\"center\"> </p>";
echo "</form>";
echo "<table border=\"1\" width=\"100%\">";
echo "<tr>";
echo "<td width=\"100%\">";
if (isset ($_POST["suchen"]))
{
echo "Nah, geht doch.";
}
echo "</td>";
echo "</tr>";
echo "</table>";
echo "</body>"
?>
Diese Script wird auf dem Server meines Provider einwandfrei aus geführt.
aber auf meinem Server ist beim tätigen des Buttom der Ausgabe Text nicht zusehen.
Configuration des Windows 2000 Server :
Apache 2.0.43 , PHP 4.3.9 , Mysql 3.23.14
ich habe ein konfigurationsproblem meines localen Webserver.
das Script an dem ich diese Problem fest mache ist:
<?php
echo "<body>";
echo "<form method=\"POST\" action=\"test.php\">";
echo "<table border=\"0\" width=\"100%\">";
echo "<tr>";
echo "<td width=\"100%\" align=\"center\">";
echo "<input type=\"submit\" value=\"Suchen\" name=\"suchen\">";
echo "</td>";
echo "</tr>";
echo "</table>";
echo "<p align=\"center\"> </p>";
echo "</form>";
echo "<table border=\"1\" width=\"100%\">";
echo "<tr>";
echo "<td width=\"100%\">";
if (isset ($_POST["suchen"]))
{
echo "Nah, geht doch.";
}
echo "</td>";
echo "</tr>";
echo "</table>";
echo "</body>"
?>
Diese Script wird auf dem Server meines Provider einwandfrei aus geführt.
aber auf meinem Server ist beim tätigen des Buttom der Ausgabe Text nicht zusehen.
Configuration des Windows 2000 Server :
Apache 2.0.43 , PHP 4.3.9 , Mysql 3.23.14
Kommentar