Tech Study

Write a simple PHP program to check that email id is valid or not

Introduction

PHP is a server scripting language, and It is a powerful tool for making interactive and dynamic Web-pages. I have used WampServer 2.2 for following excercise..

<?php
// Passing valid/invalid email
$email = "techstudy.org@gmail.com";
if (filter_var($email, FILTER_VALIDATE_EMAIL)) 
{     
 
     echo '"' . $email . '" is valid Email ID'."\n";
}
else 
{     
     echo '"' . $email . '" is invalid Email ID'."\n";
}
?>

Result

Write a simple PHP program to check that email id is valid or not
Write a simple PHP program to check that email id is valid or not

TaggedWrite a simple PHP program to check that email id is valid or not

Java Final keyword

Introduction : java final keyword The final keyword present in Java programming language is generally used for restricting the user. …

Read more

C++ Memory Management: new and delete

C++ Memory Management We know that arrays store contiguous and the same type of memory blocks, so memory is allocated …

Read more