Guten Morgen,
ich habe eine Tabelle gebaut aber die macht das nicht wie ich das gerne möchte. Die Checkboxnen sollten von Status und Projekt sollen neben einander sein.
Projekt Status
Firma A offen
Firma B in Arbeit
Fertig
abgelehnt
<table border="1" style="width:70%" >
<tr>
<td>
<?php
function Project_View(&$oProject)
{ global $oUSER,$cIMGPATH, $myLayout;
$aIssues = $oProject->getOverviewIssues(array("u_id" => $oUSER->getID()));
for($i=0; $i<count($oProject->getName()); $i++)
{
?>
<table border="1" style="width:35%">
<tr>
<td>
<input type="checkbox" name="Project" value="<?php echo $oProject->getID();?>"><?php echo $oProject->getName();
echo "</td>";
?>
</tr>
</table>
<?php
} } ?> </td>
<td>
<table border="1" style="width:100%" >
<?php
//Status
$oStatus = new Status();
$aStatus = $oStatus->Status1();
for($j=0; $j<count($aStatus); $j++)
{
?>
<tr>
<td>
<input type="checkbox" name="Status" value="<?php echo $aStatus[$j];?>"><?php echo $aStatus[$j]; ?>
</td>
</tr>
<?php
}
?>
</table>
</td>
</tr>
</table>
ich habe schon hin und hergeschoben ich bekomme es nicht hin.