I tried the following: http://intranet/signup.php?Domain=newdomain.com, and
it doesn't seem to return any values
In my script I have the following:
<?
print $_POST['Domain'];
$DomainName = $_POST['Domain'];
print $DomainName;
print $Domain."\n";
print $HTTP_POST_VARS['Domain'];
?>
I'm running PHP 4.3.3RC4
Am I doing this wrong, or do I need to set some options somewhere?
--
Kind Regards
Rudi Ahlers
Compassion is difficult to give away because it keeps coming back.
it doesn't seem to return any values
In my script I have the following:
<?
print $_POST['Domain'];
$DomainName = $_POST['Domain'];
print $DomainName;
print $Domain."\n";
print $HTTP_POST_VARS['Domain'];
?>
I'm running PHP 4.3.3RC4
Am I doing this wrong, or do I need to set some options somewhere?
--
Kind Regards
Rudi Ahlers
Compassion is difficult to give away because it keeps coming back.
Comment