Showing posts from 2012

explode() is not working to explode with "br" tag

I am trying to explode "<br>" tag but its not working.My string is below  3013 Bates Lake Road <br>  Macolm, AL 36566 *************My PHP Code ****************** $string="3013 Bates Lake Road Macolm, AL 36566&qu…

Scrolling up and down using jquery

First of all just create a function goToByScroll() and replace its id by which you want to move threw out  function goToByScroll(id){           $('html,body').animate({scrollTop: $("#"+id).offset().top},'slow');     } …

Add confirmation box in php

<a href="?action=del_order&oid='.$result['id'].'" onclick="return del_conf()"> <script 'javascript'> function del_conf(){ var con=confirm("Are you sure you want to delete this orde…

Find next month date threw mysql

Query example : ($sql="SELECT DATE_ADD(date_format(b_reg_date,'%Y/%m/%d'), INTERVAL 3 MONTH) as exp_date,business,users,utype,b_headline,b_reg_date,curdate() from `tbl_business` as h  having DATE_SUB(exp_date,INTERVAL 5 DAY)=curdate() …

Check that entered value is numeric or not in php

We can use isnumeric function to check that value is numeric or not it is return true and false .Example ...  if(!isnumeric($value)){                    echo "Value should be numeric";                     }

Get the last click url and set it into session

This is so simple just put the highlighted code in your main file . *************************************************************  $current_url = (!empty($_SERVER['HTTPS'])) ? "https://".$_SERVER['SERVER_NAME'].$_SERVER[…

Jquery form validation script fully customize

If you want to validate your form using jquery then below is a fully customize and very clear jquery validation script. Preview :   What you have to do : If you have internet connection on your computer then you just need to be copy the enti…

That is All