Hello All,
Here's my problem, we have an online form that connects to a Domino file parser, not all emails are being received! IT is saying that we are gettign all emails, this is impossible, the count is way too low, and ppl are obviously getting timeouts, IT suggested that I put a counter on the submit button.
This will even further reduce the number of emails we get because it will probably prolong the request.
Any Idea what I should do?
Any snippet of code would be much appreciated.
Thanks
What type of counter should I use?
Moderator: General Moderators
-
Klaws_wolverine
- Forum Commoner
- Posts: 32
- Joined: Mon Sep 29, 2003 10:11 am
Only increment the counter on a successful execution of that particular part of the script.
eg.
eg.
Code: Select all
<?php
if(mail(...whatever...))
{
// exec counter
} else {
// error
}
?>