I am modifying some code, and I want toe replace the function-built $form variable w/ an include file.
Basically, I want to change:
$table1 = starttable ("600", $word." Product", "javascript:history.back();", $form, 3);
to this:
$table1 = starttable ("600", $word." Product", "javascript:history.back();", include("product_form_inc.php"), 3);
where it pulls in the product_form_inc.php file in the proper place. For some reason, it's including the file... "outside" the rest of the $table1 function. From the output, the form should appear in the middle of the table. But w/ the revised code that I'm trying to use, it's including the file before it even begins the rest of the function.
Any ideas?
Thanks,
Shaun