i have a bucle to know all my information.
Code:
$s = OCIParse($c, $query);
OCIExecute($s, OCI_DEFAULT);
while (OCIFetch($s)) {
echo ociresult($s, 1) . " ";
echo ociresult($s, 2) . " ";
echo ociresult($s, 3) . " ";
echo ociresult($s, 4) . " ";
echo ociresult($s, 5) . " ";
echo ociresult($s, 6) . " ";
$size = ociresult($s, 6);
echo ociresult($s, 7);
echo "<br>";
}
OCILogoff($c);
in this line: $size = ociresult($s, 6); I give the free % of my tablespace.
How can i give in different echo the values???
Bookmarks