Huh, shur enough, something isn't quite right here...hang tight, running it locally now and seeing if I can't figure out why in the name of zeus this thing isn't working quite right XD
Shoulda tried it first before I said it was right I guess.
Edit: Seems include/require don't work that way, the only way to make it work is something similar to this:
Code:
$Table.="<td>";
include("Action/form.php");
$Table.="</td>";
Then in form.php:
Code:
$Table.="What have you!";
Boils down to continuing to $Table.= whatever data you're adding via Action/form.php. Since Action/form.php is being included -after- $Table has been initially set it can keep using the existing variable, including adding new stuff to the end of it