1
i have a CREATE TABLE $table line that i've been using in my old script that i just migrated everyone from to XOOPS - i need to put this somewhere in avatar.php where it'll run whenever someone uploads a new avatar - i haven't been successful in placing in the right place yet. can someone help?
$sql3 = "CREATE TABLE IF NOT EXISTS ".$avatar_id."
( ip VARCHAR(255), time VARCHAR(255)) TYPE = MYISAM; ";
mysql_query($sql3);
TIA
g