[ create a new paste ] login | about

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

PHP, pasted on Feb 13:
1
2
3
4
5
6
7
<?php
$a = "a";
$helloworld = "helloworld";

echo $$a;
echo $$helloworld;
?>


Output:
1
ahelloworld


Create a new paste based on this one


Comments: