<html><head><title></title></head><body>
<a href="?action=nots">nots</a>
- <a href="?action=arch">arch</a> -
<a href="?action=pro">pro</a><br>
<?php
if ((!isset($action)) ) {
include "firstpage.php";
}else{
echo $action;
include $action . ".php";
}
?>
</body></html>
the code above workx fine in my personal web server (apache + php) but in a hosting server doesn't, when i click in "nots" it should open the same page with the variable $action defined as "nots", but it doesn't happen, why is that????
thanks in advance 😕