No, I mean server-side sessions http://www.php.net/session
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts Menu
function SaveSettings($settings, $acct) {
// Do whatever you do to make sure the "acct" is valid here...
foreach($settings as $key => $value) {
mysql_query("UPDATE settings SET $key = $value WHERE account = $acct") or die("Error saving setting '$key'");
}
print("Settings saved.");
}
$settings['email'] = "[email protected]";
$settings['lamer'] = "yes";
SaveSettings($settings, $acct);
Page created in 0.089 seconds with 16 queries.