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 MoreCategory: php program
Write a PHP Program to Print Table of a Number.
Print Table of a Number Using PHP Program, How to Display Table Number in PHP, PHP Program Print Table Number Exapmle :- Print Table of 2. <?php define(‘a’, 2); for($n=1; $n<=10; $n++) { echo $n*a; echo ‘<br>’; } ?> Exapmle :- Print Table of 3. <?php define(‘a’, 3); for($n=1; $n<=10; $n++) { echo $n*a; echo […]
See MoreWrite a PHP Program to Print Sum of Digits.
Sum of Digit Numbers Using PHP Program, How to Sum of Digit by PHP, Print Sum of Digits Number in PHP Program <?php $num = 20202021; $sum=0; $rem=0; for ($i =0; $i<=strlen($num);$i++) { $rem=$num%10; $sum = $sum + $rem; $num=$num/10; } echo “Sum of digits 20202021 is $sum”; ?>
See MoreFind Whether a Number is Armstrong Number or Not in PHP With Form
PHP Armstrong Number Program,How do I Find My Armstrong Number Using PHP, Check if a number is armstrong number or not Using PHP, Armstrong Number program in PHP with form If user here takes value 153 (3 digits), then the number of digits is the number of their th power increases. 13 + 53 + […]
See MoreWrite 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