已编辑:我已将代码更改如下并收到“NaN”错误!有人可以给我一个关于那是什么的线索以及要解决的提示吗?谢谢。
有人可以告诉我这段代码有什么问题吗?
- 首先,我在 PHP 中调用了 Javascript,这真的可能吗?
- 我调用第二个警报的方式有问题吗?(尽管它是否可能在 php 中使用 js)这意味着显示文本输入和在警报消息中选择的选项。
- 我需要在循环的最后一个花括号之后放置“行尾”(;)吗?
这是代码:
<?php
$con=mysql_connect('localhost','root') or die ("Server connection failure!");
$db=mysql_select_db('regional_data',$con) or die ("Couldn't connect the database");
$SQL="SELECT sbstart, sbend FROM newchk";
$run=mysql_query($SQL,$con) or die ("SQL Error");
$nor=mysql_num_rows($run);
?>
<!DOCTYPE html>
<html>
<head><title></title>
<script type="text/javascript">
function ValidateData() {
var TextIn = document.getElementById('txtN');
if(TextIn.value == ""){
alert ("Text field is empty");
return false;
}else{
var TextIn = document.getElementById('options');
alert (<?php $i ?> + TextIn.value);
}
}
</script>
</head>
<body>
<form onsubmit="return ValidateData()" method="POST">
<select STYLE='width:90px'><?php
while ($rec = mysql_fetch_array($run))
{
for($i=$rec['sbstart']; $i<=$rec['sbend']; $i++)
{
echo "<option id='options' value=''.$i.''>$i<br></option>";
}
}
?>
</select>
<input type="text" name="txtN">
<input type="submit" name="subN" value="Save">
</form>
</body>
</html>