I have the following code:
for($n=1; $n<=100; $n++)
{
echo $n . '<br />';
}
How could I change it so it shows a word for:
multiples of three
multiples of three and five
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
This is general solution to check ALL numbers from the range for being multiplies for current number.
You can make a function from this code:
So in code you will use
$rangeinstread of 100.