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);
Ion Cube installtion in linux dedicated server.
| February 10, 2010 | Posted by Subikar under cent os, dedicated server, ioncube, linux |
Hi All, If you have dedicated server and like to install ioncube on your server without any hassle then follow my below notes to do easy installtion. Let me introduce you what is ioncube. ioncube is basically a encoder (encryption method) used to help protect the php files from software piracy. It is normally used…
How to add external javascript and stylesheet in joomla component
| September 17, 2009 | Posted by Subikar under component, javascript, joomla, stylesheet |
This is very easy step you can add external javascript or css in head tag of the page. According to seo you cannot add javascript/css in the middle of the page. So here is the code snippet. $document =& JFactory::getDocument(); $document->addStyleSheet($stylesheeturl.’styles.css’); $document->addScript($jsurl.’scripts.js’); Have a happy w3c validate page
Import and export big db in linux
| September 14, 2009 | Posted by Subikar under linux, phpmyadmin |
Here is my short blog post lets share with my friends who are learning linux and want to import or export data to phpmyadmin using linux. So here is the code for that. Data Export in linux mysqldump -u dbusername -h dbhost -pdbpassword dbname > dbname.sql Data Import in linux mysql -u dbusername -h dbhost…
How to create simple block module in drupal 6.x
| July 31, 2009 | Posted by Subikar under block, cms, community, drupal, drupal 6.x, module, php |
Creating simple block module in drupal is easy you just need to concentrate on this artcile to learn to create simple block module in drupal step by step. For drupal all block module whould uploaded to the folder sites/all/modules Suppose I am creating an exampl module to display news from a single category. Step 1:…
Currency converter calculator in php
| July 15, 2009 | Posted by Subikar under converter, currecny, php |
I hope a lot of people will like this module. Let me show you the demo work here if you like it just click here for Free Download. And install it to your website. Step guide how to install and use to your own website. 1. Download the code from here Free Download 2. Add…
Digital forums resgiter problem for last 10 week.
| June 16, 2009 | Posted by Subikar under forums, myblogplanner |
Last 2 month ago one of my office colleague signed up with digital forums and got error and even not received any email from digital point Fatal error: Existing data passed is not an array Called set_existing in /home/sites/forums.digitalpoint.com/web/register.php on line 385 in /includes/class_dm.php on line 235 I thought it may be they have updated …
Auto Login Joomla function
| May 27, 2009 | Posted by Subikar under cms, it professional, joomla, myblogplanner |
One of my client always like to sent mail to his members with updates of the website to make them participate. For long time he was demanded me a auto login system in joomla. Today at last we got the solution how we can do it. I am sharing this with you hope that may…
Create New joomla password function
| April 27, 2009 | Posted by Subikar under cms, joomla, myblogplanner, subikar |
Let me show you how you can create joomla password function Here is the exmaple how you can create joomla 1.5.x password function. function FnGenerateNewPassword($Password) { jimport(‘joomla.user.helper’); $salt = JUserHelper::genRandomPassword(32); $crypt = JUserHelper::getCryptedPassword($Password, $salt); $password = $crypt.’:’.$salt; return $password; } Hope this will help you in some program.
Drawing component module
| December 1, 2008 | Posted by Subikar under cms, drawing module, joomla |
Hi All itcslive introducing a new module for email drawing. Feature: This module wil help user to subscribe any drawing image to his email. I am sharing this module with all give your comment how this is benifit for you. Drawing Component Drawing Module