|
Posted by Philipp Grassl on 05/28/07 18:13
<?php
function somma($uno,$due)
{
$totale = $uno + $due;
return($totale);
}
$sum = somma(3,4);
print("$sum");
?>
You mean like this?
vinnie schrieb:
> 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!
>
Navigation:
[Reply to this message]
|