PHP Classes

File: README.md

Recommend this page to a friend!
  Classes of Mr. Dharmendra Kumar   Simple PHP Multiplication Table   README.md   Download  
File: README.md
Role: Documentation
Content type: text/markdown
Description: Read me
Class: Simple PHP Multiplication Table
Show a multiplication results table on a Web page
Author: By
Last change:
Date: 1 year ago
Size: 306 bytes
 

Contents

Class file image Download

SimpleMultiplicationTable2

<?php require_once("SimpleMultiplicationTable2.php");

$obj=new SimpleMultiplicationTable2();

/* You can print multiple table at onnce. $table = $obj->output(4,5,6,7,8); echo $table; if no argument given it will print 1, 20 table. */

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