当前位置:网站首页>PHP verify mailbox format
PHP verify mailbox format
2022-06-24 02:40:00 【Master coder】
<?php
if(isset($_POST['email'])){
$email = $_POST['email'];
if(filter_var($email, FILTER_VALIDATE_EMAIL)){
echo '<p>This is a valid email.<p>';
}else{
echo '<p>This is an invalid email.</p>';
}
}
?>
<form action="" method="post">
Email: <input type="text" name="email" value=" <?php echo $_POST['email']; ?> ">
<input type="submit" value="Check Email">
</form> 边栏推荐
- Are cloud game servers expensive to rent? Factors to consider in cloud game server leasing
- Using robot framework to realize multi platform automated testing
- Buddha's foot before examination: the second play of leetcode
- Leetcode838: push domino (medium)
- Pod abnormal troubleshooting
- Simple use of notification
- How to build an enterprise website? Is it difficult?
- Using the database middleware MYCAT to realize read-write separation (dual master and dual slave)
- How to transfer files from the server connected to the fortress machine and how to access the server through the fortress machine
- Face recognition using cidetector
猜你喜欢
随机推荐
How to handle the abnormal state of easycvr national standard cascading superior display?
How to use nsfilemanager
Echo framework: add API logging Middleware
[Tencent cloud double 12 audio and video communication special session] from 9 yuan for Q4 counter attack artifact, SMS and security (New) package!
Afnetworking server client
How to calculate the trademark registration fee? How much does it cost to register a trademark?
The cloud game is rendered by the server. How much broadband does the server need
Is a trademark domain name useful? How long does it take to register a domain name?
Start tcapulusdb process
Does the cloud game server only provide one player? Cloud game server defense capability
Objective-C downloads pictures from the network, saves them, and displays them from the save with uiimageview
October 27, 2021: curriculum. You must take numcourses this semester
How about Shenzhen website construction? Is it expensive?
Mutual conversion between qstring and qdatetime
Coding -- the leader of R & D tools in the cloud native Era
Mysql Find_ IN_ Set function
Activiti obtains the initiator based on the process instance ID
Is the IP of the fortress machine the IP of the server? How to deploy the fortress machine
Cloudpods golang practice
Implementing an ORM framework against SQL injection with builder mode


