php tutorials -> functions in php

 20-functions.php

<?php

function myMessage() {
echo "Hello world!";
}
myMessage();

function sum($x,$y=5) {
return $x+$y;
}
echo sum(1,2);
?>


=

No comments:

Post a Comment

Image upload in laravel

 = if($images !== null) { $images_array=[]; foreach ($images as $image) { $data=ImageUpload::instan...