Click to See Complete Forum and Search --> : Monitor Apache Servers....


Anon
08-04-2002, 02:00 AM
Hey guys!
I installed php 4.2.2 on apache 2 today on my computer (win98)...Everything is working fine, but when I try to run apache thru Monitor Apache Servers it won't work...I've noted that on the bottom of Monitor Apache Servers window is written "Apache/1.3.23" and I'm running apache 2! Does anyone know how to make Monitor Apache Servers working with Apache 2??

Thanx in Advance

Felipe Lopes

Anon
08-05-2002, 04:04 AM
Well I am using the post feature with apache to send results and I keep getting undefined variable errors. The code I am using is

<form action="dur.php" method="POST">
<input type="checkbox" name="FirstCheckbox">
<input type="checkbox" name="SecondCheckbox">
<input type="submit" value="Send Form">
</form> in my test.html file, and in dur.php its
<?php
if($FirstCheckbox)
{
echo("The first checkbox was checked!<br>\n");
}
if($SecondCheckbox)
{
echo("The second checkbox was checked!<br>\n");
}
?>

The error is Notice: Undefined variable: FirstCheckbox in c:\jake\dur.php on line 2

Notice: Undefined variable: SecondCheckbox in c:\jake\dur.php on line 6
Any suggestions?