php表单代码怎么做

以下是一个基本的 PHP表单代码示例,该示例包含一个文本字段、一个单选按钮和一个提交按钮:

<!DOCTYPE html>
<html>
<head>
	<title>PHP Form Example</title>
</head>
<body>
	<h2>PHP Form Example</h2>
	<form method="post" action="submit.php">
		<label for="name">Name:</label>
		<input type="text" name="name" id="name"><br><br>
		
		<label for="gender">Gender:</label>
		<input type="radio" name="gender" value="male" id="male"> Male
		<input type="radio" name="gender" value="female" id="female"> Female
		<br><br>
		
		<input type="submit" name="submit" value="Submit">
	</form>
</body>
</html>

在上面的php表单代码示例中,我们使用 method="post" 属性将表单数据发送到 PHP 脚本 submit.php。我们还使用了一个文本输入字段 name 和两个单选按钮 malefemale

在 PHP 脚本中,您可以使用 $_POST 超级全局变量来获取提交的表单数据。以下是一个基本的 submit.php 脚本示例,用于处理表单数据并向用户显示提交的数据:

<!DOCTYPE html>
<html>
<head>
	<title>PHP Form Handling Example</title>
</head>
<body>
	<h2>PHP Form Handling Example</h2>
	<?php
	// 获取表单数据
	$name = $_POST['name'];
	$gender = $_POST['gender'];
	
	// 显示提交的数据
	echo "<p>Hello, $name! You are $gender.</p>";
	?>
</body>
</html>

在上面的示例中,我们使用 $_POST['name']$_POST['gender'] 来获取提交的表单数据,并在页面上向用户显示提交的数据。

请注意,这只是一个基本的 PHP 表单示例。您可以根据需要添加更多的表单字段和逻辑来满足您的需求。

猜你喜欢:

php与html表单的交互功能

html表单单选按钮代码

 
匿名

发表评论

匿名网友
:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:
确定