[ create a new paste ] login | about

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

martin@mustbebuilt.co.uk - PHP, pasted on Oct 13:
1
2
3
4
5
6
7
8
9
<?php
    $firstName = "Martin";
    echo $firstName;
    echo "First Name: " . $firstName;
    // or
    echo "First Name: {$firstName}";
    // or
    echo('Hi All');
?>


Output:
1
MartinFirst Name: MartinFirst Name: MartinHi All


Create a new paste based on this one


Comments: