How Can I Send Email Using mail() Function in PHP?

PHP provides you with built in mail () function to send emails. The general syntax of this function is given below. Keywords :- Send Email Using Mail() Function by PHP, How to Send Email with Mail() Function Using PHP PHP Mail Function Syntax mail(to,subject,message,headers,parameters); In PHP, 4 parameters are passed inside the mail () function […]

See More

Write a program to find whether a number is Armstrong or not in PHP with Form

PHP Armstrong Number Program,Check if a number is armstrong number Using PHP, Armstrong number Program in PHP, PHP Script to find Armstrong number or not, Write a PHP program to check if a number is an Armstrong number or not, Armstrong Number program in PHP with form armstrong-or-not-in-php-with-form.php <!DOCTYPE html> <html> <head> <title>Write a program […]

See More

Write a program to print Reverse of any number

<?php if(isset($_POST[‘reverse’])) { $rev=0; $num=$_POST[‘rev’]; while($num>=1) { $re=$num%10; $rev=$rev*10+$re; $num=$num/10; } } ?> <html> <head> <title>Reverse</title> </head> <body> <table> <form method=”post”> <tr><td>Number</td><td><input type=”text” name=”rev”></td></tr> <tr><td>Reverse is:</td><td><input type=”text” value=”<?php if(isset($_POST[‘reverse’])){echo $rev;} ?>” name=”rev1″></td></tr> <tr><td> </td><td><input type=”Submit” value=”Reverse” name=”reverse”></td></tr> </form> </table> </body> </html>

See More