Public paste
temp
By: rhcp | Date: Apr 29 2008 11:01 | Format: None | Expires: never | Size: 193 B | Hits: 1063

  1. rhcps-computer:~ rhcp$ cat test.php
  2. <?
  3.  
  4. ob_start();
  5. include("test2.php");
  6.  
  7. $b = ob_get_contents();
  8. echo "B = $bn";
  9.  
  10. ?>
  11. rhcps-computer:~ rhcp$ cat test2.php
  12. <?
  13.  
  14. die("ERROR");
  15.  
  16. ?>