[ create a new paste ] login | about

Link: http://codepad.org/uK8TNdto    [ raw code | output | fork ]

PHP, pasted on Aug 27:
1
2
3
4
5
6
7
8
9
<?php
function hello()
{global $tname;
    $tname= 'hello '.$tname;
}
$tname="trofun";
hello();
echo $tname;
?>


Output:
1
hello trofun


Create a new paste based on this one


Comments: