View Single Post
  #2  
Old 08-27-2012, 08:31 AM
Scott is offline Scott
Scott's Avatar
AKA. Panther

Join Date: Sep 2001
Location: Minneapolis, MN
Posts: 10,974

You could try using this and see if it works:

PHP Code:
If(!is_array($_FILES['attachment']) OR !array_sum($_FILES['attachment']['size'])) {  
    
$error.="You did not attach any files.<br />"

Put it between:

PHP Code:
If(trim($yourmessage)=="") { 
    
$error.="You did not enter a message!<br />";

And
PHP Code:
// Verify Attchment info
If($allowattach 0) { 
Like:

PHP Code:
If(trim($yourmessage)=="") { 
    
$error.="You did not enter a message!<br />";
}

If(!
is_array($_FILES['attachment']) OR !array_sum($_FILES['attachment']['size'])) {  
    
$error.="You did not attach any files.<br />"


// Verify Attchment info
If($allowattach 0) { 
__________________

04' Dodge SRT-4, Mopar Stage 3, 406whp/436wtq
Reply With Quote