Posted by pizzy on 09/30/05 04:52
//jm,
//I would use sessions or cookies... or you could turn on globals but i
wouldn't recommend this...
//example:
//////////////////////
//(index.php)
///////////////////////
session_start();
$back_color = #FFFFFF;
$_SESSION['back_color'] = $back_color;
//////////////////////
//(nextPage.php)
///////////////////////
session_start();
<body bgcolor='<? echo $_SESSION['back_color']; ?>'>
// I hope this helps
// from,
//
// pizzy
Navigation:
[Reply to this message]
|