0
我正在通過OCI連接器查詢帶有SQL查詢的oracle數據庫。我期待根據一列中的值拆分我返回的數組。根據值從OCI拆分表
因此,在這個例子中,基於「位置」列中的值,我想分開的表。我已經能夠通過使用if((floorid == $ row ['LOCATION'])並且將floor ID設置爲其中一個值來分隔其中一個位置,但是我無法複製這些以用於所有可能性。複製標題任何幫助,將不勝感激
$stid = oci_parse($conn, $query);
oci_bind_by_name($stid, ":getparam", $safeparam1);
$r = oci_execute($stid);
print '<hr>';
print '<table class="style1">';
Print '<tr><th>Name</th><th>Location</th><th>Colour</th></tr>';
while ($row = oci_fetch_array($stid, OCI_RETURN_NULLS + OCI_ASSOC)) {
print '<tr>';
foreach($row as $item) {
print '<td>' . ($item !== null ? htmlentities($item, ENT_QUOTES) :
'') . '</td>';
}
print '</tr>';
}
print '</div>';
oci_free_statement($stid);
oci_close($conn);
@JamesPavett對此有何反饋? – timclutton