PHP Classes

File: howtouse.php

Recommend this page to a friend!
  Classes of Mr. Dharmendra Kumar   Simple PHP Multiplication Table Using for Loop   howtouse.php   Download  
File: howtouse.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Simple PHP Multiplication Table Using for Loop
Display a multiplication table for a given number
Author: By
Last change:
Date: 4 years ago
Size: 152 bytes
 

Contents

Class file image Download
<?php
require_once("SimpleMultiplicationTable.php");

$obj=new SimpleMultiplicationTable();

$num=3;
$table = $obj->output($num);
echo
$table;