Hi I’m using the mail function in my contact page, and I need to pass more then 5 parameters. When I try to pass more then 5 parameters I get an error saying mail() can handle only handle 5. Is there any way to solve this?
thanks in advance
🙂
What type of parameters do you want to pass ?
Thomas
Hi
Just details from the person filling in the form
Name Number Message Etc...
ta
Just combine all of your details in to 1 string and send the string.
$message = "Contact: " . $contact; $message .= "Email: " . $email;
etc. etc.
Then just send $message