连接到同一网络上的oracle db

时间:2015-05-13 14:01:32

标签: php oracle

这是我的PHP代码连接到我的大学网络上的oracle 11.2 g db  但它没有正常工作。

这是代码

<? php

 $conn = oci_connect('usename', 'password', 'ics-db.ccse.kfupm.edu.sa:1521/XE'); 

                if (!$conn) {

                 $e = oci_error();
                   echo "Couldn't make a connection!";              
 }
         else
       $stid = oci_parse($conn, 'SELECT * FROM student');
       oci_execute($stid);
       echo "<table border='1'>\n";
   while ($row = oci_fetch_array($stid, OCI_ASSOC+OCI_RETURN_NULLS)) {
        echo "<tr>\n";
         foreach ($row as $item) {
       echo "    <td>" . ($item !== null ? htmlentities($item, ENT_QUOTES) :  "&nbsp;") . "</td>\n";


     }
 echo "</tr>\n";
  }

       echo "</table>\n";

     oci_close($stid);

                           ?>

这将是在不正确的网页上打印的内容

while ($row = oci_fetch_array($stid, OCI_ASSOC+OCI_RETURN_NULLS)) {

echo "<tr>\n";

foreach ($row as $item) {

echo "    <td>" . ($item !== null ? htmlentities($item, ENT_QUOTES) : "&nbsp;") . "</td>\n";

1 个答案:

答案 0 :(得分:1)

我认为你在开始标记和php之间留下了一个空格,一些丢失的括号代码应该是:

<?php

 $conn = oci_connect('usename', 'password', 'ics-db.ccse.kfupm.edu.sa:1521/XE'); 

                if (!$conn) {

                 $e = oci_error();
                   echo "Couldn't make a connection!";              
 }
        else{
		
       $stid = oci_parse($conn, 'SELECT * FROM student');
       oci_execute($stid);
       echo "<table border='1'>\n";
  	 while ($row = oci_fetch_array($stid, OCI_ASSOC+OCI_RETURN_NULLS)) {
       	 echo "<tr>\n";
        		 foreach ($row as $item) {
      		 echo "    <td>" . ($item !== null ? htmlentities($item, ENT_QUOTES) :  "&nbsp;") . "</td>\n";
     }
 echo "</tr>\n";
  }
}

       echo "</table>\n";

     oci_close($stid);

 ?>

可能值得使用代码编辑器来突出显示这些问题,例如Notepad ++(免费)。