PHP实例:单表单内容发送和接收
我们都是如果要实现内容发送或者接收我们首先都需要一个表单也就是form标签,下面这个是前端的html代码,代码如下:
<form action="1.php"> <p>Get 发送方式: <input type="text" name="wz"/></p> <p>Post 发送发送: <input type="text" name="wz1"/></p> <input type="submit" value="OK"/> </form>
后台的php就是从上面的name内的值获取需要的内容,代码如下:
<?php $a = $_GET ['wz']; if($a==null){echo "对方没输入"."</br>";}else{ echo "我是GET接收方式:".$a."</br>";} $b = $_GET ['wz1']; if($b==null){echo "对方没输入"."</br>";}else{ echo "我是POST接收方式:".$b."</br>";} ?>
这里的php意思以get模式来获取标签内属性name里面的值,然而echo 在php中就是打印出来 if就是先加以判断~ 注意:如果表单是post传值我们必须使用$_POST才可以接受数据.
PHP实例:url传值
这个是要发送的php代码,代码如下:
<?php include_once('zq/db.php'); $sql = "select * from wd_sql"; $query=mysql_query($sql); $i = 1; while ($result = mysql_fetch_array($query)) { $x = $i++; "<br><a href='del.php?xx=".$result['id']."&ccxc=wd_sql'>删除</a>"//在这里实现了传值 } ?>
这个是接收值的php,代码如下:
<?php $uid = $_GET['xx']; $db_sql = $_GET['ccxc']; if(mysql_query($sql) == 1) {echo "<script>alert('删除成功!');history.go(-1);</script>";} ?>
本文链接:
收藏随意^^请保留教程地址.

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Atom editor mac version download
The most popular open source editor

Dreamweaver Mac version
Visual web development tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 English version
Recommended: Win version, supports code prompts!
