I have created a couple functions
a.php
<?php
function a ()
{
echo "this is a <br>";
?>
<tr><td>this is from html</td></tr>
<?php
}
?>
ab.php
<?php
include "a.php";
a();
?>
b.php
<?php
include "ab.php";
include "a.php";
echo "b <br>";
a();
?>
I figure it'll probably overwrites when the code is included again in b.php.
Can anybody verify this and let me know what's going on in the file?
Thanks