我正在尝试从 MySql 表中返回值,并且似乎能够获得除了我需要的所有内容!
PHP:
<?php
session_start();
include('config.php');
$user_check=$_SESSION['login_user'];
$sql_rec = "select UserID from useradmin where username='$user_check' ";
$rs_rec = mysql_query($sql_rec);
$data_rec = mysql_fetch_object($rs_rec);
$userID = $data_rec->UserID;
$sql_fn = "select * from Candidates where UserID='$userID' ";
$rs_fn = mysql_query($sql_fn);
$row = mysql_fetch_row($rs_fn);
$data_fn = $row['contactno'];
print $sql_fn;
print $data_fn;
print $row;
?>
$sql_fn 给了我正确的结果
$row 给了我 'Array'
但 $data_fn 什么也没给我。
本质上,我正在尝试使用如下结果填充文本字段:
HTML:
<label for="contactno">Contact Number</label> <br> <input type="test" name="contactno" id="contactno" class="input_field" value="<?php echo $row['contactno'];?>">
有人可以指出我哪里出错了吗?
谢谢你。