$idc = $_GET['id'];
$name1 = $_GET['name'];
$id2 = $_GET['ids'];
if ($_POST['message_field'] != ""){
$message_field = $_POST['message_field'];
$sql = mysql_query("INSERT INTO comment (mem_id,commented_men_id, message, message_date)
VALUES('$userid','$idc','$message_field', now())")
or die (mysql_error());
}
$sql_message = mysql_query("SELECT id, mem_id ,message, message_date FROM comment WHERE mem_id='$userid' ORDER BY message_date DESC");
while($row = mysql_fetch_array($sql_message)){
$id = $row["id"];
$me_id = $row["mem_id"];
$json = $row["message"];
$message_date = $row["message_date"];
$message = json_encode($json);
$sql_mem_data = mysql_query("SELECT id, name FROM users WHERE id='$me_id'");
while($row2 = mysql_fetch_array($sql_mem_data)){
$id = $row2["id"];
$ufirstname = $row2["name"];
}
$messageList .= '<div id="only"><p>' . ufirstname . '</p><br/><p id="pmessage">'.$the_message.'</p></div>';
}
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title> Book</title>
<link rel="stylesheet" href="style/style.css" type="text/css" media="screen" />
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="jquery.form.js"></script>
<script type="text/javascript" src="mootools-core-1.3.2-full-compat.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#messageinput").click(function() {
$.post($('#message').attr("action"),
$("#message").serialize(),
function(html) {
var comment = $(html) .find('#messageoutput').html();
$("#pmessage").html(comment);
});
});
});
</script>
<div id="messageid">
<form align="left" id="message" action="<?php profile.php?id='.$idc.'& ids='. $id2.'&name='.$name1.'?>" method="post" enctype="multipart/form-data" name="blab_from">
<textarea name="message_field" rows="3" style="width:97%;"></textarea>
<input id="messageinput" name="submit" type="button" value="submit" align="left" />
</form>
</div>
<div id="messageoutput"><?php print "$messageList"; ?></div>
$idc = $_GET[‘id’]; $name1 = $_GET[‘name’]; $id2 = $_GET[‘ids’]; if ($_POST[‘message_field’] != ){ $message_field
Share
You can do it like this… Suppose this is your html
Then the following code will submit the form data and will echo the result back in the ‘data’ variable. You can do whatever you want to do with the return data then. Like in the example i am putting the returned data in a div with id=”result”.
Solution to your modified script