i have some php files. each file has big html code with codes indented
like as:
...
<a href="<?=$var1?>"><?=$var1?></a><br><?=$var2?>
....
but i dont want the result of php files showes in browser. i want to save the result in one variable in end of each file.
one way is:
...
$con.='<a href="';
$con.=$var1
$con.='">'
...
but this way is very bored. is there any simpler way to do this it? (for example using of buffer or ... ) how?
Thanks