Hi!
What I want is simply to pass variable to the same page.
My code looks like:
<?php
If (isset($submit))
{
echo "You clicked here";
}
else
{
?>
<form method=post action="<?=$PHP_SELF?>">
<input type=submit name="submit" value="submit">
</form>
<?
}
?>
But I think $PHP_SELF doesn't work correct on Win32, besause I get Error404 .
Any suggestions...
Thanx in advance!
What I want is simply to pass variable to the same page.
My code looks like:
<?php
If (isset($submit))
{
echo "You clicked here";
}
else
{
?>
<form method=post action="<?=$PHP_SELF?>">
<input type=submit name="submit" value="submit">
</form>
<?
}
?>
But I think $PHP_SELF doesn't work correct on Win32, besause I get Error404 .
Any suggestions...
Thanx in advance!