<object type="image/svg+xml" data="image.svg" width="200" height="200" ></object>
<?php
$conn=oci_connect("user", "password", "tns name");
$stid = oci_parse($conn, 'SELECT firstname, lastname FROM users');
oci_execute($stid);
while ($row = oci_fetch_array($stid, OCI_ASSOC+OCI_RETURN_NULLS)) {
foreach ($row as $item) {
echo $item . "<br>";
}
}
?>