$.ajax({
url: "/content/inputtasks/textarea.php?id=" +id,
global: false,
type: "POST",
dataType: "html",
success: function (data){ // Ответ от сервера с данными
$("#comment").html(data);
}
})
параметры на страницу textarea.php передаются, но в поле textarea отображается вот что :
<br />
<font size='1'><table class='xdebug-error' dir='ltr' border='1' cellspacing='0' cellpadding='1'>
<tr><th align='left' bgcolor='#f57900' colspan="5"><span style='background-color: #cc0000; color: #fce94f; font-size: x-large;'>( ! )</span> Warning: mysql_fetch_assoc(): supplied argument is not a valid MySQL result resource in Z:\home\localhost\content\inputtasks\textarea.php on line <i>15</i></th></tr>
<tr><th align='left' bgcolor='#e9b96e' colspan='5'>Call Stack</th></tr>
<tr><th align='center' bgcolor='#eeeeec'>#</th><th align='left' bgcolor='#eeeeec'>Time</th><th align='left' bgcolor='#eeeeec'>Memory</th><th align='left' bgcolor='#eeeeec'>Function</th><th align='left' bgcolor='#eeeeec'>Location</th></tr>
<tr><td bgcolor='#eeeeec' align='center'>1</td><td bgcolor='#eeeeec' align='center'>0.0001</td><td bgcolor='#eeeeec' align='right'>69032</td><td bgcolor='#eeeeec'>{main}( )</td><td title='Z:\home\localhost\content\inputtasks\textarea.php' bgcolor='#eeeeec'>..\textarea.php<b>:</b>0</td></tr>
<tr><td bgcolor='#eeeeec' align='center'>2</td><td bgcolor='#eeeeec' align='center'>0.0136</td><td bgcolor='#eeeeec' align='right'>70976</td><td bgcolor='#eeeeec'><a href='http://www.php.net/mysql_fetch_assoc' target='_new'>mysql_fetch_assoc</a>
( )</td><td title='Z:\home\localhost\content\inputtasks\textarea.php' bgcolor='#eeeeec'>..\textarea.php<b>:</b>15</td></tr>
</table></font>
вот код php:
try {
header('Content-type: text/xml; charset=utf-8');
$key = $_POST['id'];
$db = mysql_connect('192.168.112.38', 'root', 'astalavista') or
die("Could not connect: " . mysql_error());
mysql_select_db('projectmanager');
mysql_query('SET NAMES cp1251',$db);
mysql_query('SET CHARACTER SET cp1251',$db);
$result = mysql_query("SELECT * FROM inputtasks WHERE idinputtask =" . $key );
while ($row = mysql_fetch_assoc($result)) {
echo iconv("WINDOWS-1251","UTF-8","<textarea>".$row['comment']."</textarea>");
}
mysql_close($db);
}
catch(Exception $e) {
$log->WriteErrorMessage($e);
}
Видимо я не правильно рисую разметку подскажите как правильно сделать. Спасибо