|
|
|
ใครเคยใช้หรือรู้วิธีใช้คำสั่ง post ใน JQuery มาช่วยแนะนำวิธีใช้หน่อยครับ |
|
|
|
|
|
|
|
ผมเขียน $.post("InsertCalender.php",{title: 'test'}); ในไฟล์ *.js เพื่อที่จะส่งไปยังไฟล์ *.php แต่มันไม่ยอมบันทึก ผมยังงมานานแล้วรบกวนผู้รู้ช่วยแนะแนวทางหน่อยนะครับ
*********************** ไฟล js *****************************
buttons: {
save : function() {
calEvent.id = id;
id++;
calEvent.start = new Date(startField.val());
calEvent.end = new Date(endField.val());
//calEvent.title = titleField.val();
calEvent.title = 'A2';
calEvent.body = bodyField.val();
$.post("InsertCalender.php",{title: 'test'});
$calendar.weekCalendar("removeUnsavedEvents");
$calendar.weekCalendar("updateEvent", calEvent);
$dialogContent.dialog("close");
},
*************** ไฟล์ *.php **********************
<?
$title = $_POST['title'];
$con = mysql_connect("localhost","root","1234");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db("database", $con);
$sql="Insert into schedule (TITLE) values ($title)";
if (!mysql_query($sql,$con))
{
die('Error: ' . mysql_error());
}
mysql_close($con)
?>
Tag : PHP, MySQL, JavaScript, Ajax, jQuery, CakePHP
|
|
|
|
|
|
Date :
2011-04-12 00:38:03 |
By :
Agility |
View :
769 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$sql="Insert into schedule (TITLE) values ($title)";
เช็ค '$title' หรือ $title
|
|
|
|
|
Date :
2011-04-12 04:20:06 |
By :
sdf |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<!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>
<title></title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.0/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('#button').click(function(){
$.ajax({
type: 'POST',
url: "test.php",
data: {name: $('#name').val()},
success: function(data){
$('#result').html( data );
}
});
})
});
</script>
</head>
<body>
<input type="text" name="name" id="name" />
<input type="submit" name="button" id="button" value="Submit"/>
<br />
<span id="result"></span>
</body>
</html>
test.php
Code (PHP)
<?php
echo $_POST['name'];
?>
|
|
|
|
|
Date :
2011-04-12 08:51:06 |
By :
ไวยวิทย์ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|