Easy. Set a cookie with the values you want to keep.
$fav_color="red";
$telljokes=true;
setcookie("color", $fav_color);
setcookie("telljokes", $telljokes);
Put these at the VERY TOP of the page you want to imprint the cookies with. The cookies WON'T TAKE EFFECT until the next page hit, so you might want to "buffer" the page, something like this:
if (isset($HTTP_COOKIE_VARS(fav_color))
{ $fav_color=$HTTP_COOKIE_VARS(fav_color); }
else {$fav_color=$fav_color_input};
Hope this helps!
-Ben