> Line 110: > > VALUES ('$receptor[1]', '$mfi->email', '$frm[priority]', '$frm[title]', > '$frm[description]', now(), '$on_special')
Those "errors" are just warnings. It's telling you that $receptor[1] does not have a value when it reaches that statement. Does that matter to you? You may want to throw in a check before this statement that assigns a default value to $receptor[1]. Or, if it's not supposed to ever be empty, then you've got some debugging to do. The problem is the same for your other error, too. ---John Holmes... -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php