Hi Everyone,
I'm having some issues getting session variables from a form. Heres the run down:
<//-- form section -->
<?
session_start();
session_register("name");
print "(form content)<input type=text name=name";
...(rest of html)
?>
<//-- Process Section -->
<?
session_start();
session_register("name");
print "$name";
?>
I get no output. It kinda makes sense, but i need a way around it. Anyone got any ideas?
Cheers,
Steve