Advertisement
vertrex

PHP Test 1: Improved

Sep 18th, 2012
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <?php
  2. $variable = 1;
  3. $variable .= 2;
  4. echo $variable; // output will be 12
  5. //This is a better way of doing it
  6. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement