Hy I am trying to do someting like this...
function drawTable($rows, $columns, $table , $funct)
//$table stands for pre defined table
//$funct stands for function whith validation rules and insert or update query
{
echo "<table border=0>";
for ($x=1; $x<=$rows; $x++)
{
echo "<tr>";
for ($y=1; $y<=$columns; $y++)
{
echo "<td> $table </td>";
}
}
//how can I here start any function? Is it possible without using classes?
$funct;
}
and later I just call like
drawTable("1", "2", $insertUser, insertUserFunct());
Is it possible???
thax...