1. The code for calling up a page onto another page. (/News/news.php for my fusionphp news on my index2.php page)
include(/News/news.php)
Now you can call whatever function is in news.php or it will just display what news.php displays
2. The code you need for lnks. (aka - ex. index.php?ID=blah or index.php?number=2)
there is no code needed to amke a url like that, simply make a url and use variable names in place where you have "blah" and "2" such as:
echo "<a href=\"pagename.php?id=".$_POST['id']."\">ID</a>";
That code would get the ID from a form and put it in the url
the code to get the id from the url would be:
echo $_GET['id'];
Hope this helps