Blogger is free blog publishing service from Google just like wordpress and the best thing about blogger blogs are the articles gets indexed in the Google search engine very fast and this article is all about customizing the blogger template, I am going to show how to customize blogger template by taking the default blogger […]
Tips&Tricks
How to Validate Emails Using Filters in PHP
Using PHP Filters we can fully validate an email id and this filter option requires PHP 5 version. Below is the code for validating emails in PHP using filters, along with using explode and foreach loop and then inserting the correct emails in the mysql database. Multiple emails validation. Validate Emails Using Filters in PHP
How to Get MySql Query Result as an Email
If you are working on a big mysql query and want to get the mysql query as email when it finishes use the below trick. Go to mysql command:Set pager directive: mysql> pager mail -s “subject” emailme@domain.comPAGER set to ‘mail’ -s “subject” emailme@domain.com The trick uses pager directive to redirect the query output result to […]