how to set time_zone in php [solve] joomla ,cakephp,codeingiter ,core php Get link Facebook X Pinterest Email Other Apps September 28, 2012 ini_set('date.timezone', 'Asia/Calcatta'); ordate_default_timezone_set( 'Asia/Calcatta') Get link Facebook X Pinterest Email Other Apps Comments
php email reader and notification though header parameters December 24, 2012 down vote accepted For the reading confirmations: You have to add the X-Confirm-Reading-To header. X - Confirm - Reading - To : <address> For delivery confirmations: You have to add the Disposition-Notification-To header. Read more
March 03, 2013 public void setName(String name) { this.name = name; } public String getPassword() { return password; } public void setPassword(String password) { this.password = password; } public String getPassword2() { return password2; } public void setPassword2(String password2) { this.password2 = password2; } Read more
How to count duplicate characters from a sentence in java August 20, 2012 Output : DuplicateCharacter .java package com.swain.cell; import java.util.HashMap; public class DuplicateCharacter { /** * @param args */ public static void main(String[] args) { // TODO Auto-generated method stub String str = "Character duplicate word example java" ; char ch1[]=str.toCharArray(); HashMap<Character,Integer> hm= new HashMap<Character,Integer>(); for ( int i=0; i<ch1. length ; i++) { char ch=ch1[i]; ... Read more
Comments
Post a Comment