Program: <?php $img = imagecreate(500,300); $bgcolor = imagecolorallocate($img,150,200,180); $fontcolor = imagecolorallo...
Read More
15 Program to demonstrate function return type in PHP
Program: <?php function add($a,$b) { return $a+$b; } $c = add(10,20); echo "A+B: $c"; ...
Read More
Subscribe to:
Posts (Atom)