Advertisement
dead__

Untitled

Apr 27th, 2011
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.15 KB | None | 0 0
  1. <?php
  2.     $test = 1;
  3.     if($test = 1)
  4.     {
  5. ?>
  6. $test ist 1
  7. <?php
  8.     }
  9. ?>
  10.  
  11. oder
  12.  
  13. <?php
  14.     $test = 1;
  15.     if($test = 1)
  16.     {
  17.     echo '$test ist 1';
  18.     }
  19. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement