Advertisement
Guest User

Untitled

a guest
Sep 21st, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. <?php
  2. // file.php
  3. $plane = 1;
  4.  
  5. include ( "path/to/otherfile.php" );
  6.  
  7. // otherfile.php
  8. if ( $plane === 1 )
  9. {
  10. echo 'plane 1';
  11. }
  12. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement