tg wrote:
hi
i need returning value of function as a variable
example :
function 1 () { return "some error"; }
function 2 () { $v = 1(); if ( $v != '' ) echo "error"; }
it doesn't work this way
Are you using 1 and 2 as the function names in your real application? Hope not, because function names same as variable names in all languges can not begine with digit. Your 1 and 2 functions not work in my computer either, but they start to work after I have changed 1 and 2 to a and b respectively.
Best
Bao
this works : echo 1(); but i need the string value as a variable
thanks
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php