I have this simple ajax code, for some reason it wont load content onto textarea. I need it to load the content so that it can be edited in the textarea.
Here’s the code, I’m not sure what I’m doing wrong. But it displays in a div like so
<div id="content"></div>
Here’s the full code
<html>
<head>
<title>Editing Page Content</title>
<script type="text/javascript">
function showCustomer(str)
{
var xmlhttp;
if (str=="")
{
document.getElementById("content").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("content").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("GET","load.php?file="+str,true);
xmlhttp.send();
}
</script>
</head>
<body>
<p>Page Select to edit</p>
<?php
$result = mysql_query("SELECT pagename FROM site_content");
echo "<select name=\"pagename\" onchange=\"showCustomer(this.value)\" style=\"width:300px;\">";
echo "<option selected value=''>Please select a page to edit...</option>";
while($row = mysql_fetch_assoc($result)){
echo "<option selected value='" . $row['pagename'] ."'>" . $row['pagename'] . "</option>\n";
}
echo "</select>";
?>
<div id="content">
**it works here**
</div>
<textarea cols="50" id="area1" style="position: absolute; width: 700px; height: 300px;">
**It won't work here**
</textarea>
<input type="button" value="Submit content">
</div>
</body>
</html>
Any help would be appreciated.
From your code this looks to do exactly what you want:
Since your
divhas the id of “content” the response is being put there. Try something like:I must also advise you to take a look at the PHP documentation on choosing a MySQL API as
mysql_*is considered outdated and is in a long-term deprecation.