嗨我做了一个代码我的PHP但它不工作我不知道为什么
这是我的代码
update.php
<?php
$link=mysql_connect("localhost","root","root");
mysql_select_db("helixcrm",$link);
$q="select * from clientreg";
$ros=mysql_query($q);
$i=0;
while($row=mysql_fetch_array($ros))
{
if($i%2==0)
$classname="evenRow";
else
$classname="oddRow";
?>
<tr class="<?php echo $classname;?>">
<td><input type="checkbox" name="users[]" value="<?php echo $row["id"]; ?>" ></td>
</tr>
<?php
$i++;
}?>
<?php
$focus = array();
$rowCount = count($_Post["users"]);
echo $rowCount;
for($i=0;$i<$rowCount;$i++) {
$result = mysql_query("SELECT * FROM clientreg WHERE Id='" . $_POST["users"][$i] . "'");
$row[$i]= mysql_fetch_array($result);
//echo $row[$i]['interest'];
$focus = explode(',', $row[$i]['interest']);
$check = implode(',' , $focus);
// echo $check;
echo $row[$i]['id'];
}
?>
<form>
</form>
这里我的代码 $ rowCount = count($ _ Post [“users”]); 不在这里工作,但如果我在另一个php页面上写这个代码
我错了
我如何实现输出
任何帮助将不胜感激
答案 0 :(得分:0)
尝试这样做
<?php
if (isset($_POST['submit'])) {
$example = $_POST['example'];
$example2 = $_POST['example2'];
echo $example . " " . $example2;
}
?>
<form action="" method="post">
Example value: <input name="example" type="text" />
Example value 2: <input name="example2" type="text" />
<input name="submit" type="submit" />
</form>