[ create a new paste ] login | about

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

PHP, pasted on Jun 26:
1
2
3
4
5
6
7
<?php
    $name = 'Joe';

    $coolness = ($name == 'Joe') ? 'extreme' : 'not as much';

    echo $coolness;
?>


Output:
1
extreme


Create a new paste based on this one


Comments: