コードに問題があります。$meaning 変数を di の innerhtml に入れたいのですが、私のコードは次のとおりです: searchinput.php:
<form action = "search.php" method = "post">
<input name="word" id="word" type="text" maxlength="255" />
<label for="word">word:</label></br></br>
<input type="submit" value="search" />
</form>
<div id = "meaning"> </div>
search.php:
<?php
$db = mysql_connect("localhost", "root", "");
mysql_select_db("project",$db);
$word = isset($_POST["word"]) ? $_POST["word"] : "";
$result = mysql_query("select meaning from vocabulary where word = '$word'");
$fetchmeaning = mysql_fetch_array($result);
$meaning = $fetchmeaning['meaning'];
?>
今、私はこれを持ちたいです:
document.getElementById('meaning').innerhtml = $meaning; !!!!
どうすればこれを妨害できますか?