jquery的ajax方式处理
$.post('1.php',{"key":value},function(data){//如果这儿用post的话1.php中用post接受,如果这儿用get那么脚本中也要用get
//data为返回值
})
1.php
<?php
function getContent ($key){
//mysql_connect()
//mysql_select_db()
$key=$_POST["key"]
$slq="select * form table where key like $key "
mysql_query($sql)
//开始处理结果集}
$key=$_POST["key"]
//$key要检测表单提交脚本注入等安全隐患
function getContent ($key)
<html><head>
<meta http-equiv="Content-Type" content="text/html charset=utf-8" />
<title>无标题文档</title>
</head>
<body>
<form action="" method="get">
Name: <input type="text" name="name" />
<input type="submit" />
</form>
<?php
$name=$_GET['name']
echo "欢迎你:".$name
?>
</body>
</html>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)