[ create a new paste ] login | about

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

upwhere - PHP, pasted on Apr 20:
1
2
3
4
5
6
7
8
9
<?php
 
$myText = "Happy New Year! "; 
$myNum = 2014;
 
echo $myText;
  
echo "The year is ". $myNum;
?>


Output:
1
Happy New Year! The year is 2014


Create a new paste based on this one


Comments: