How to write data option in jQuery.ajax() function when it include in a mysql_query?
- by cj333
I modify a php comment system. I want add it after every article witch are query from database.
this is the php part
<?php
...
while($result = mysql_fetch_array($resultset))
{
$article_title = $result['article_title'];
...
?>
<form id="postform" class="postform">
<input type="hidden" name="title" id="title"…