//Inset into database
$insert_status = mysql_query("INSERT INTO status ('mem_id, wall_id, vid_id, art_id, sName, status, date') VALUES ('$logOptions_id','$pro_id','$zero','$zero','$username','$status',now())") or die (mysql_error());
Should be:
//Inset into database
$insert_status = mysql_query("INSERT INTO status (`mem_id`, `wall_id`, `vid_id, `art_id`, `sName`, `status`, `date`) VALUES ('$logOptions_id','$pro_id','$zero','$zero','$username','$status',now())") or die (mysql_error());