simple regular expression to search all the emails from a web page.

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.

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

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

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

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

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.

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 …

Create New joomla password function

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

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

« Previous PageNext Page »