怎么把html中的值传到php中 ,php中的数据库查询函数中的参数。 例如 在表单中传的值key.value.

怎么把html中的值传到php中 ,php中的数据库查询函数中的参数。 例如 在表单中传的值key.value.,第1张

说实在的你好好看看书吧..就算别人给你答案了你也不太懂

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"]

//$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>


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/7273985.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-03
下一篇 2023-04-03

发表评论

登录后才能评论

评论列表(0条)

保存