[ create a new paste ] login | about

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

PHP, pasted on Feb 16:
1
2
3
4
5
6
7
<?php

$foo = "Sethen";
$bar = $foo;
$bar = "Sethen is " . $bar;

echo $bar;


Output:
1
Sethen is Sethen


Create a new paste based on this one


Comments: