所以昨天我决定学习php、Javascript和html。我写了一个 php 脚本,当我在终端中使用 php5 运行它时,它会给出正确的输出,但是当我尝试使用 Javascript 将它添加到网页时,它会打印最后 ~1/4 代码的点点滴滴以及表格 I试图打印但没有变量值。即使我从脚本中删除所有 echo 实例,它也会这样做。
这是php:
<?php
$foo = $_GET["t"];
$con = mysql_connect('host', 'user', 'pw');
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
$db_selected = mysql_select_db('db', $con);
if (!$db_selected)
{
die('Can\'t use db: ' . mysql_error());
}
$sql = sprintf("SELECT fun FROM table WHERE op = '%s'", $foo);
$data = mysql_query($sql);
$result = array();
$i = 0;
while($row = mysql_fetch_array($data)){
$result[$i] = $row[0];
$i++;
}
$dist = $name = range(min($result), max($result), .5);
for($i=0; $i<count($dist); $i++)
{
$temp = array_fill(0,count($result),0);
for($j=0; $j<count($result); $j++)
{
if ($result[$j] < $dist[$i]) $temp[$j] = 1;
}
$dist[$i] = array_sum($temp)/count($temp);
}
$temp = array_fill(0,count($dist),0);
for($i=0; $i<count($dist); $i++)
{
if ($dist[$i] < 0.5) $temp[$i] = 1;
}
$best = $name[array_sum($temp)-1];
$less = 0;
$more = 0;
$temp = array_fill(0, count($result), 0);
for($i=0; $i<count($result); $i++)
{
if ($result[$i] < $best) $temp[$i] = 1;
}
$less = array_sum($temp)/count($temp);
$temp = array_fill(0, count($result), 0);
for($i=0; $i<count($result); $i++)
{
if ($result[$i] > $best) $temp[$i] = 1;
}
$more = array_sum($temp)/count($temp);
$equal = 1 - $less - $more;
echo "<table border='1'>
<tr>
<th>Best</th>
<th>Less</th>
<th>Equal</th>
<th>More</th>
</tr>";
echo "<tr>";
echo "<td> $best </td>";
echo "<td> $less </td>";
echo "<td> $equal </td>";
echo "<td> $more </td>";
echo "</tr>";
echo "</table>";
mysql_close($con);
?>
和我得到的输出。
$best) $temp[$i] = 1; } $more = array_sum($temp)/count($temp); $equal = 1 - $less - $more; 回声“最好的更少平等更多”;回声“”;回声“$最佳”;回声“$less”;回声“$等于”;回声“$更多”;回声“”;回声“”;mysql_close($con); ?>
当我在终端中使用任意输入值运行 php5 时的输出是:
<table border='1'>
<tr>
<th>Best</th>
<th>Less</th>
<th>Equal</th>
<th>More</th>
</tr><tr><td> 27 </td><td> 0.48417721518987 </td><td> 0.048523206751055 </td><td> 0.46729957805907 </td></tr></table>
这就是我想要的。
如果有帮助,继承人的 html/javascript。
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
function hreCalc(str)
{
if (str=="")
{
document.getElementById("txtHint").innerHTML="";
return;
}
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
document.getElementById("txtHint").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("GET","funCalc.php?t="+str,true);
xmlhttp.send();
}
</script>
</head>
<body>
<form>
<select name="totals" onchange="hreCalc(this.value)">
<option value="">Select a total:</option>
<option value="5.5">5.5</option>
<option value="6">6</option>
<option value="6.5">6.5</option>
<option value="8.5">8.5</option>
</select>
</form>
<br></br>
<div id="txtHint"><b>Total info will be listed here.</b></div>
</body>
</html>
我刚开始学习这些语言,我尝试了我能想到的一切。问题似乎来自 > 标志,但我不知道如何解决它,据我所知,您应该能够在 php 中使用 > 而不会导致 html 出现问题。我使用的是 ubuntu 12.04,所以我可能没有安装我需要的所有东西吗?