fork download
  1. <?php
  2.  
  3. // your code goes here
  4. $id = 100500;
  5. ?>
  6. ---------------------
  7. echo $id;
  8. <?php echo $id ?>
  9.  
  10. ---------------------
  11. $id
  12. <?php $id ?>
  13. ---------------------
Success #stdin #stdout 0.02s 52472KB
stdin
Standard input is empty
stdout
---------------------
echo $id;
100500
---------------------
$id
---------------------