How do the ob_start() ob_get_contents() work???
I need this i think to extract the html that is created from my dynamic pages???
HELP PLEASE 🙂
ob_start(); echo "This is buffered output"; $op = $ob_get_clean();
$op now contains "This is buffered output". Learn lots more at http://www.php.net/manual/en/ref.outcontrol.php
that's odd, it made everything dissapear?
Alright, i got it to work now, now i'm having problems passing the variable when i submit my form... its being submitted to the same page, but won't hold the variables?