Forum: Tips & Tricks
01-10-2011, 07:19 AM
|
|
Replies: 16
Views: 23,961
Hi
Thanks for all of you who just posted a better way of doing that.
I am just a beginner and need guidance in solving things in an easier way.
Hope all of you will support.
|
Forum: Tips & Tricks
01-07-2011, 05:49 AM
|
|
Replies: 16
Views: 23,961
Hi
Salathe,I didn't use the php built in functions just because they are throwing some warnings while working with them like "date() function may not be reliable because it retrieves the data from the...
|
Forum: Member Introductions
01-04-2011, 10:43 AM
|
|
Replies: 6
Views: 1,107
Hi
Hi john!
As you said this is really a great place to work and can find easy working with PHP with the help of this site.
|
Forum: Tips & Tricks
01-04-2011, 10:34 AM
|
|
Replies: 16
Views: 23,961
brief way for age calculation
<?php
echo "Age Calculator";
date_default_timezone_set('Asia/Calcutta');
$localtime = getdate();
$dob = "21-04-1969";
//$today = date("d-m-Y");
$today =...
|