PHP Classes

File: example.php

Recommend this page to a friend!
  Classes of Dannel   PHP Age Calculator   example.php   Download  
File: example.php
Role: Example script
Content type: text/plain
Description: Example script
Class: PHP Age Calculator
Calculate the age of a person with the birth date
Author: By
Last change:
Date: 2 years ago
Size: 87 bytes
 

Contents

Class file image Download
<?php
include 'Age.php';
$obj=new AgeCalculator();
echo
$obj->Age('1993/07/16');
?>