Forum Moderators: coopster
For example,
content.php
$abcdef = "Result";
$bcdefg = "Result2";
table.php
<table><tr><td><?=$somevariable?></td></tr></table>
get.php
require ("content.php");
require ("table.php");
$a = $_GET["a"]; //where a will be abc
$b = $_GET["b"]; //where b will be def
$somevariable = //Combined of $a and $b, and is a variable so it can be called in content.php
Hope is not confusing... i have my own reasons for making it this way :)