本文目录一览:
php中怎么来执行一个按钮事件
可以在按钮里面加一个单击事件,然后里面加一个带参数的链接地址。
input type="buttom" onclick="javascript:window.location.href='post.php?sub=yes'"
单击之后,执行链接,然后php代码就可以这么写:
?php
if($_GET['sub'] == 'yes')
{
执行的代码,省略.....
}
?
php 页面上一个按钮,如何点击后触发相关事件,着急。
?php
if(!empty($_POST['chaxun'])){ //点击提交按钮后才执行
$sql = "select * from 数据库表名 where 条件";//从数据库中查询数据
$query = mysql_query($sql);
$row = mysql_fetch_assoc($query);//数据结果集
}
?
table
tr?php echo $row['字段名1'];?/tr
tr?php echo $row['字段名2'];?/tr
tr?php echo $row['字段名3'];?/tr
......
/table
form action="" method="post"
input type="heddin" name="chaxun" value="查询数据隐藏域" /
input type="submit" name="button" value="提交" /
/form
php中怎么触发按钮事件
点按钮后提交表单,服务端判断有无提交表单
?php
if (isset($_REQUEST[*is_submit*]) $_REQUEST[*is_submit*])
{
//你要完成的工作
}
?
form method="post" action=""
input type="submit"
input type="hidden" name="is_submit" value="1"
/form
php 怎么自动触发 事件
php是没有onclick的你可以用js来驱动如:setTimeout('location.href="aaa.php",2000');也就是2秒钟后再次加载aaa.php
PHP按钮事件
?php
$file = '1.txt';
$searchfor = '寻找的内容';
// the following line prevents the browser from parsing this as HTML.
header('Content-Type: text/plain');
// get the file contents, assuming the file to be readable (and exist)
$contents = file_get_contents($file);
// escape special characters in the query
$pattern = preg_quote($searchfor, '/');
// finalise the regular expression, matching the whole line
$pattern = "/^.*$pattern.*\$/m";
// search, and store all matching occurences in $matches
if(preg_match_all($pattern, $contents, $matches)){
echo "有";
}
else{
echo "没有";
}