-1

在 PHP 中,我想$subject使用 if 语句创建一个数组,例如

我已经有一个可能有数据或未命名的数组$remark

这就是我想要的

    $con=mysqli_connect("localhost","root","anderpoye","ex_smartcard2013");

if (mysqli_connect_errno())
  { 
  echo "Failed to connect to MySQL: " . mysqli_connect_error();
  }

$result3 = mysqli_query($con,"SELECT  name,remark FROM sec_users where sec_users.email = 'shivesh@lotus.edu.in'");
while($row = mysqli_fetch_array($result3))
{ 
if($row['remark'])
{ 
$remark= $row['remark'];

if $remark = null then $subject = "action Required"
else $subject = "";
echo $subject;
}
}

表示如果 $remark 为空则 $subject = "action required" 否则如果 $remark 包含一些数据则 $subject = "" 表示空

4

2 回答 2

1

你的问题不是很清楚,但这就是你的意思吗?

while($row = mysqli_fetch_array($result3)){
    if($row['remark']==null){
        $subject = 'Action Required';
    }else{
        $subject = '';
    }
    $remark = $row['remark'];
}
于 2013-07-07T16:49:29.833 回答
0

[]
在 php 中,您可以使用以下示例将元素添加到数组中

$set = array()
for($i = 0; $i < 10; $i++) {
    $set[] = $i;
}
print_r($set);

// you can also set the key name in this way
for($i = 0; $i < 10; $i++) {
    $set["ind_".$i] = $i;
}
print_r($set);

希望你明白了

于 2013-07-07T16:48:21.210 回答