in my doc i am trying to load a page within a table cel like the
iframe in html
echo"<a href=\"?link=about\">about</a>
<a href=\"?link=web\">Web</a>
<a href=\"?link=email\">email</a>"
then i use an if statement in the table cell where i want my content......
<? if ($link == "about")
{
echo"<p>I am fatal
}
if ($link == "email")
{
echo"<p>I am fatal
}
how do i get the echo replaced to load a page within the table cell
i have tried include, and require but that don't work. 🙁