PHP Classes

File: example.php

Recommend this page to a friend!
  Classes of Jay   Number To Amount Word   example.php   Download  
File: example.php
Role: Example script
Content type: text/plain
Description: Example FIle
Class: Number To Amount Word
Spell numbers with English words
Author: By
Last change:
Date: 16 years ago
Size: 317 bytes
 

Contents

Class file image Download
<html>
<title>Example</title>
<body><form>
<input type="text" name="num">
<br>
<input type="submit" name="Convert" value="Convert">
<br>
<?php
include "NumToWord.class.php";
if(
$_REQUEST["Convert"] == "Convert")
{
$num = new NumberToWord($_REQUEST["num"]);
echo
$num->word;
}
?></form>
</body>
</html>