怎么把html中的值传到php中 ,php中的数据库查询函数中的参数。 例如 在表单中传的值key.value.
发布网友
发布时间:2022-04-07 04:59
我来回答
共4个回答
热心网友
时间:2022-04-07 06:28
说实在的你好好看看书吧..就算别人给你答案了你也不太懂
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);追问嗯是该看书的,但是现在这东西必须做出来,没时间重头看书,就是边学变做啊,任务急
热心网友
时间:2022-04-07 07:46
在函数外面写:
$key=$_POST['key'];
然后调用函数:
getContent($key);
即可。
热心网友
时间:2022-04-07 09:21
<form action="#" method="post">
<input type="text" name="key">
<input type="submit" name="sub" value="提交">
</form>
<?php
echo $_POST["key"];//这就是你提交的内容!
?>
热心网友
时间:2022-04-07 11:12
用表单提交的方式或者ajax追问对想用ajax 这步怎么写呢 ?