Tuesday, July 30, 2013

<?php
class menuAtas{

var $data = array();
var $jlh = 0;

function displayMenu(){

echo "<table border='1' align='center' width='100%'><tr>";
for($j=0; $j<count($this->data); $j++){

echo "<td align='center'><a href='".$this->data[$j]['label']."'>".$this->data[$j]['name']."</a></td>";
}
echo "</tr></table>";

}

function addMenu($name, $label){

$this->data[$this->jlh]['name'] = $name;
$this->data[$this->jlh]['label'] = $label;
$this->jlh++;

}

}
?>

No comments:

Post a Comment