Category: link
simple regular expression to search all the emails from a web page.
| April 12, 2010 | Posted by Subikar under email, link, php |
Hi Developers If you want to search all the emails from a web page you can use this simple regular expression to search all the email from any website. (href=["|\'])(mailto:)(.*?)(["|\']) If you are using php script then your code will be like this. preg_match(‘(href=["|\'])(mailto:)(.*?)(["|\'])’, $Your String, $Return the data in Array);
Know your site’s external and internal links!
| November 22, 2007 | Posted by Subikar under link, myblogplanner, network, orkut, seo, subikar |
Let me share with you one of my small development demos. I have written a php code that checks in a web page, how many internal and external links it is holding. The code is really easy to install in your site or blog. I think the SEOs who have a lesser knowldge in php…