Forum Moderators: coopster
on the main page b4 <html> tag
<% dim page
page = "thePage"
%>
And in the include I had:
<% if page = "thePage" then %>
<% else %>
<% end if %>
The php I wrote is on the main page b4 <html> tag>:
<?php
$whatpage = "thePage";
?>
and in the include:
<?php
if($whatPage == "thePage"){
}
else {
}
?>
It's not working. I tried adding:
$whatPage=$_GET["whatPage"];
before the if statement but it ain't working either.
Help please
Leo