Forum Moderators: coopster
$password = $_REQUEST['password'];
echo $password
$_GET['password']
$HTTP_GET['password']
in php page but under secure server it doesn't display any thing.
Can any one please help me in this matter
<?php
echo $HTTP_POST_VARS["password"]?>
<?php
echo $HTTP_GET_VARS["password"]?>
or
<?php
print($HTTP_POST_VARS["password"]);?>
<?php
print($HTTP_GET_VARS["password"]);?>
Also, HTTPS is supported starting from PHP 4.3.0 [php.net]. I guess what I am suggesting is that just because your script is running may not mean it is running securely. I don't have a test server running 4.2.3 so I can't confirm. Regards, coopster