search
HomeBackend DevelopmentPHP ProblemPHP setting text box cannot be empty

PHP setting text box cannot be empty

Oct 19, 2019 am 10:44 AM
phpjudgmentnull value

PHP setting text box cannot be empty

php setting text box cannot be empty

Usually we need to determine whether the information submitted by the user is empty. There are two methods: front-end js judgment and back-end server judgment.

For example, user form code

<form method="post" action="/check.php">
<input type="text" name="content" id="content" />
<input type="submit" value="提交" />
</form>

1. Use js to judge:

<form method="post" action="/check.php">
<!-- 表单改成下面这样 (加了一个 onsubmit) -->
<form method="post" action="/check.php" onsubmit="return checkForm()">

<!-- 然后写一个简单的js判断一下 -->
<script type="text/javascript">
	function checkForm(){
		var tag = false;
		var checkText = document.getElementById("content").value;
		if ( checkText == "" || checkText == null ){
			alert("未输入");
		}else{
			alert("已输入");
			tag = true;
		}
		return tag;
	}
</script>

This js code should be placed where the form is file, or you can write it as a js file and import it
For example, remove the <script> at the beginning and end, save it as<span style="background-color: rgb(253, 234, 218);">checkform.js<br/>and then</script>

<script type="text/javascript" src="/checkform.js">

2. Use server-side php to judge: No need to change the
form line, directly write

<?php
$checkText = $_POST[&#39;content&#39;];
if ( empty( $checkText ) ){
    echo &#39;<script type="text/javascript">alert("未填写");historty.go(-1)</script>&#39;;
    exit; //写exit是很必要的, 防止浏览器禁用JS.
}
//这里不用else了,能执行到这一行不用再判断
echo &#39;<script type="text/javascript">alert("未填写");historty.go(-1)</script>&#39;;
?>

in check.php. These are the two most basic methods. Of course, if If js is disabled, different methods must be used, such as using head to jump.

For more PHP related knowledge, please visit PHP Chinese website!

The above is the detailed content of PHP setting text box cannot be empty. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undress AI Tool

Undress AI Tool

Undress images for free

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment