Posted by Andy Hassall on 05/28/07 18:09
On 28 May 2007 11:05:05 -0700, vinnie <centro.gamma@gmail.com> wrote:
>why i do not see anything but a blank page?
>
><?php
>function somma($uno,$due)
> {
> $totale = $uno + $due;
> return($totale);
> }
>$sum = somma(3,4);
>$totale = $resto;
>print("$resto");
>print("$totale");
>?>
>
>please help me, i have a test!
You haven't got error_reporting turned up high enough. Set it to E_ALL to see
the warnings your code produces.
--
Andy Hassall :: andy@andyh.co.uk :: http://www.andyh.co.uk
http://www.andyhsoftware.co.uk/space :: disk and FTP usage analysis tool
[Back to original message]
|