ah, no luck trying,
failed with this,
trying to include page from _get
example index.php
if index.php?page=1
will include 1.php
i tried this but didnt work
<?
$maxpage = $GET_['max_link'];
if (empty($maxpage)) {$maxpage = "0.php";}
include("$maxpage");
?>
what if theres 1.php 2.php 3.php?
================
index.php have a head
----------------------+
______________|
some table result
Include()
Footer
currently i doing this 1.php?sql=1
1.php
include (head)
include (sql)
_MY_diary_1[written in php]
include (footer)
2.php?sql=2
include (head)
include (sql_for_notes_2)
_MY_diary_2[written in php]
(footer)
==================
Can it be reverse as index.php?$MY_DIARY=1
Can it be reverse as index.php?$MY_DIARY=2
hehe, thanks in advanced.