PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
I've a page where I'm entering number of email ids and then sending mails to those ids. Now, I've to find out the number of bounced mails in this case (I mean number of those mails which are failed to be sent).
$failed = 0;
foreach ($emails AS $email)
{
if (!mail(...))
{
$failed++;
}
}
echo $failed . ' emails failed to send';
However, I highly doubt that's what you're looking for.
Set Search Time - A google chrome extension. When you search only results from the past year (or set time period) are displayed. Helps tremendously when using new technologies to avoid outdated results.