Wow, your awesome at making that short! HOwever, I have this small problem because I also need to store the posted emails (contacts) into the database... so before I had:
[Code]
// Add user info into the database
$sql = mysql_query("INSERT INTO memberlog (mem_id, title, postdate, contact1, contact2, contact3, contact4, contact5, contact6, contact7, contact8, actualtime)
VALUES('$id', '$title', '$postdate', '$contact1', '$contact2', '$contact3', '$contact4', '$contact5', '$contact6', '$contact7', '$contact8', now())")
or die (mysql_error());
[/code]
Should I revert to using:
$contacts[1]="contact1";
$contacts[2]="contact2";
$contacts[3]="contact3";
etc...
Or is there a way to get the array into the mysql table?