is there any way i could execute/process a variable like this:
<? $testvar = "phpinfo();"; ?>
echo $testvar; doesn't work very well :-(
echo phpinfo();
The reason i need this is because i open a file with mixed html/php.. the idea is that lines not starting with ~ are normal html, and those with ~ are php...
Maybe this is a complicated way of doing it, but i've started with php 4 days ago..