hello,
how do I capture the generated source code in <form id="myform"></form> , i have tried captured it through php ob_start but my variable $myStr could not captured it .. i print the $myStr still the result is <form id="myform"></form> , not the generated source code.
Please help.
<form id="myform"></form>
<?php
$myStr = ob_get_contents();
ob_end_clean();
//echo $myStr ;
?>