Yes, you are majorly misunderstanding his question.
Okay
?action=view is called a query.
There are a lot of ways to do this, I'm gonna show you one that you might consider using, but If you have a
lot of links, I would
not recommend this.
PHP Code:
<?php
$page = $_GET['action'];
switch ($page)
{
case "home":
$include = "includes/index.html";
break;
case "arts":
$include = "includes/arts.html";
break;
case "aaexpert":
$include = "includes/aaexpert.html";
break;
case "career":
$include = "includes/career.html";
break;
case "comics":
$include = "includes/comics.html";
break;
case "graphics":
$include = "includes/graphics.html";
break;
case "computers":
$include = "includes/computers.html";
break;
case "consumers":
$include = "includes/consumer.html";
break;
default:
$include = "includes/home.html";
break;
}
include ($include);
?>
Now when you link, name this page something like links.php or cats.php or whatever.php! For instance
http://www.yourdomain.com/whatever.php?action=computers
That would include computers.html. You'll obviously need to change the paths/to/files.
Hope this helps.