HTML5 Base element November 10, 2017 Code: <base href="images/" /> <img src="pic1.jpg" height="250px" width="250px" /> <img src="pic2.jpg" height="250px" width="250px" /> <img src="pic3.jpg" height="250px" width="250px" /> <img src="pic4.jpg" height="250px" width="250px" /> Share Get link Facebook X Pinterest Email Other Apps Share Get link Facebook X Pinterest Email Other Apps Comments
PHP Type Casting in Bangla Language November 17, 2017 Code: <?php print $x =(int)78.9; print "<br />"; print $y = (float)87; $z = (array)90; print "<br />"; print $z[0]; ?> Read more
PHP Function Part 3 in Bangla Language November 24, 2017 Code: <?php function xyz($x, $y){ $z = $x + $y; return $z; } $a = xyz(10,20); print $a; function x() { $y[] = "abc"; $y[] = "xyz"; $y[] = "efg"; return $y; } list($a,$b,$c) = x(); print "<br />"; print $a." ".$b." ".$c; ?> Read more
Comments
Post a Comment