Heim  >  Artikel  >  Backend-Entwicklung  >  网站程序开发 PHP程序开发范例学习之表单 获取文本框的值

网站程序开发 PHP程序开发范例学习之表单 获取文本框的值

WBOY
WBOYOriginal
2016-07-29 08:46:321048Durchsuche

  文本框的用法:
  
  其中input类型包括text、password等类型,HTML5新增了很多的input类型,如果想学习这类的知识可以很好的了解一下,因为分的越细,用的越方便。
  看看本实例的功能

 PHP程序开发范例学习之表单 获取文本框的值

  填入表单提交后:

 PHP程序开发范例学习之表单 获取文本框的值
实现代码:

复制代码 代码如下:

















管理员:
密 码:
    

if(!isset($_POST['submit']))
return ;
if($_POST['submit']=='submit'){
$username = $_POST['username'];
$password = $_POST['password'];
}
echo






管理员:$username
密码:$password

EOT;
?>

使用 isset()函数判断$_POST['submit']是否被设置

以上就介绍了网站程序开发 PHP程序开发范例学习之表单 获取文本框的值,包括了网站程序开发方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn