Thread
:
Refresh question
View Single Post
01-17-2003, 11:36 PM
drunkmonkey
Confirmed User
Join Date: Feb 2002
Location: behind you Posts:1,075,324
Posts: 799
PHP is the only way I know how. You have to run sessions and a database.
Something like this might work.
<?php
session_start();
if( !isset($_SESSION['done']) || ($_SESSION['done'] == false) )
{
create your row here...
$_SESSION['done'] = true;
}
?>
drunkmonkey
View Public Profile
Find More Posts by drunkmonkey