On Wed,  4 Apr 2001 15:44, Vlad wrote:
> Hi all
>
> script example:
>
> function smth(){
>  $result = '1234 - the number';
> return $result;
> }
> ...
>   $res = smth();
> ...
> After this $res takes value of 1234 not the actual string.
> Is any soolution here?
>
> Thanks, Vlad

If you do
 function smth(){
 $result = '1234 - the number';
 return $result;
 }
  $res = smth();
echo $res;

The output is

1234 - the number

What else is in your script?

-- 
David Robley                        | WEBMASTER & Mail List Admin
RESEARCH CENTRE FOR INJURY STUDIES  | http://www.nisu.flinders.edu.au/
AusEinet                            | http://auseinet.flinders.edu.au/
            Flinders University, ADELAIDE, SOUTH AUSTRALIA

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to