Posted by InuY4sha on 09/01/07 09:45
If I type
echo("$action");
I get nothing written and if I try some code into a conditional
instruction like this
if($action == "sign"){
echo("ciao");
}
it doesn't work, but if I write
if($action == ""){
echo("ciao");
}
then it works fine meaning that it doesn't fill the $action variable
with the string declared in the address. Any hint would be appreciated
as I'm a complete newbie of php.
Thank you, bye
[Back to original message]
|