Posted by maxvalery on 04/13/06 16:24
Thanks.
I'll get real specific now. Suppose I have this layout in index.php:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head></head>
<body>
<?php require('includes/header.php');?>
<?php require('includes/navigation.php');?>
<?php require('includes/left.php');?>
... some database retrieval code goes here, e.g. mysql_query ("SELECT
....");
<?php require('includes/centerright.php');?>
<?php require('includes/far_right.php');?>
<?php require('includes/footer.php');?>
</body>
</html>
How would I write the <a href> tags in the 'navigation include file' to
point to individual pages by using the "?id=1" , "?id=2" ... "?id=n"
method in the URL?
[Back to original message]
|