buona sera gente , avrei bisognio di un vostro aiuto , se avete qualche par de minuti da dedicarmi , il problema e questo......
io con una funzione estraggo i dati , e i dati estratti dalla funzione li dovrei passare ad un altra funzione , dove ho fatto l html , come potrei fare ??????
Codice PHP:
<?php
function GettAllStaff (){
global $dbcore;
$sql = "select t.* , gs.id_groups ,gs.nome_group from tech as t left join grouptech as gs on t.groupid = gs.id_groups order by t.staffid asc ";
$query = mysql_query($sql);
$result = array();
while($row = mysql_fetch_assoc($query)){
$result[] = $row;
}
return $result;
}
function TableViewAllTech($staffid,$nome,$cognome,$username,$nome_group){
global $staffid,$nome,$cognome,$username,$nome_group;
?>
<table cellpadding="0" cellspacing="0" border="0" style="width: 100%;vertical-align:top; margin-top:0px;" class="rcwborder">
<tr>
<td class="rcwbachecatitolibg" style="width: 100%;height:21px; text-align: left;padding-left:25px;">Manage Staff - Total: </td>
</tr>
<tr>
<td class="rcwcontenttableborder" >
<table cellpadding="3" cellspacing="1" border="0" style="width:100%;" >
<tr>
<td class="rcwtabletitlecolon" style="width: 1%;"></td>
<td class="rcwtabletitlecolon" style="width: 54%;height: 21px;padding-left:5px;text-align:left;"> Full Name </td>
<td class="rcwtabletitlecolon" style="width: 15%;height: 21px; text-align:center;">Username</td>
<td class="rcwtabletitlecolon" style="width: 15%;height: 21px; text-align:center;">Group</td>
<td class="rcwtabletitlecolon" style="width: 15%;height: 21px; text-align:center;">Options</td>
</tr>
<tr>
<td class="rcwcol2" style="width: 1%;height:24px;"></td>
<td class="rcwcol2" style="width: 54%;height:24px; padding-left:5px;"><?php echo $nome; ?></td>
<td class="rcwcol2" style="width: 15%;height:24px;text-align:center;"><?php echo $username; ?></td>
<td class="rcwcol2" style="width: 15%;height:24px;text-align:center;"><?php echo $nome_group; ?></td>
<td class="rcwcol2" style="width: 15%;height:24px;text-align:center;"></td>
</tr>
<!--
<tr>
<td class="rcwcol2" style="width: 1%;height:24px;"></td>
<td class="rcwcol2" style="width: 54%;height:24px;"></td>
<td class="rcwcol2" style="width: 15%;height:24px;"></td>
<td class="rcwcol2" style="width: 15%;height:24px;"></td>
<td class="rcwcol2" style="width: 15%;height:24px;"></td>
</tr>
-->
</table>
</td>
</tr>
</table>
<?php
}
?>