Go Back   Webmaster Malaysia Forum » Website Design & Development » Website Programming

Reply
 
LinkBack Thread Tools Search this Thread Rate Thread Display Modes
  #1 (permalink)  
Old 11-01-2006, 12:29 AM
New kid on the block
 
Join Date: Dec 2005
Location: Johor
Posts: 4
Rep Power: 0
sheismaria is on a distinguished road
Send a message via Yahoo to sheismaria
autogenerate age

how to auto generate age by entering an ic number...
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 11-01-2006, 03:03 PM
heterozigot's Avatar
Novice Webmaster
 
Join Date: Jan 2003
Location: PJ
Posts: 51
Rep Power: 73
heterozigot is on a distinguished road
Send a message via ICQ to heterozigot Send a message via Yahoo to heterozigot
PHP Code:
/*
email: pekebun@gmail.com
date: 11/Jan/2006
file: icno2age.php
descp: Convert IC no to age
*/

$no '851015085541';

echo 
ic2age($no);
echo 
"<br>";
echo 
ic2state($no);
echo 
"<br>";
echo 
ic2gender($no);



function 
ic2age($no){

  
$year  substr($no,0,2);  
 
  
// year > 15 maksud dia:
  // kalo ic start dari 16 org tu lahir 1900 + year. 
  // else lahir 2000 + year.
  
(($year 15) ? $year='19'.$year $year='20'.$year);
  
  
$now date('Y');
  
$age $now $year;

  return 
$age;
}


function 
ic2state($no){

  
$code  substr($no,6,2);
  
$area  = array( "07"=>"Perlis",
                  
"08"=>"Perak",
                  
//tambah lagi code disini...
                  
"14"=>"Kuala Lumpur"
                  
);
  return 
$area[$code];
}


function 
ic2gender($no){

  
$code  substr($no,-1);
  
$code $code 2;
  if(
$code==1){
    return 
"Lelaki";
  }else{
    return 
"Perempuan";
  }

__________________
Try and Support Malaysia Product.
http://foto.home.net.my
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


All times are GMT +8. The time now is 12:38 PM. Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO 3.1.0 vBulletin skin by ForumMonkeys.com.


WebmasterMalaysia.com is Proudly Hosted by Exabytes Semi Dedicated Server.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61