从2 oci_parse返回

时间:2019-07-11 02:43:27

标签: php oracle if-statement

我可以吗,如果可以的话,下一步该怎么做:我想使用if / else来检查第一个语句是否为真,如果是(否则),它将显示另一个表中的另一个选择。

<?php 
session_start();
include 'connect.php';
if(isset($_SESSION['user'])) {
   $s = oci_parse($conn, 'select * from users where username =: user');
echo "something";
}else {
echo ($conn, 'select * from company where company_id =: ABC');

oci_execute($s);
?>

0 个答案:

没有答案