<?php
$sum = 0;
for ($i = 2; $i <= 10; $i += 2) {
$sum += $i;
}
echo "The sum of even numbers between 1 and 10 is: $sum";
?>
<?php
$sum = 0;
for ($i = 2; $i <= 10; $i += 2) {
$sum += $i;
}
echo "The sum of even numbers between 1 and 10 is: $sum";
?>
Related
Write a PHP script that connects to a MySQL database and fetches data from a table. |
Write a PHP script that calculates the factorial of a given number using an iterative approach. |
Write a PHP script that generates a random password of a specified length. |
how to get response status in api using curl php? |
Write a PHP script that generates and displays a simple multiplication table for the numbers 1 to 5. |
How to show location using google map in JavaScript? |
Create a PHP script that uses sessions to store and display user information. |
How to convert a temperature from Celsius to Fahrenheit using php. |