This is my first post. I am using a db, w/ make, model, categories, subcategories and parts tables, and am having trouble keeping the variable registered throught the pages. I also can't get the variables to reset when returning to the previous page. Go to the site to see what I mean.
www.performanceauthority.net
this is generally the main code I am using to call the variables. We can get more in-depth if needed.
session_start();
session_register("sub_catid");
include ('pa_sc_fns.php');
$name = get_sub_category_name($sub_catid);
do_html_header($name["sub_catname"]);
include('navbarcon.php');
include('bodycontent.php');
do_html_div("centercontent");
// unregister previous sessions
if (session_is_registered("makeid"))
{
unset($makeid);
}
if (session_is_registered("modelid"))
{
unset($modelid);
}
This is my first php project and first e-commerce site. it was working fine on my Apache based local server, but started not working on hte UNIX host.
TIA