About 4,160,000 results
Open links in new tab
  1. Program to print multiplication table of any number in PHP

    Oct 27, 2021 · In this article, we will see how to print the multiplication table of any given number using PHP. To make the multiplication table, first, we get a number input from the user and …

  2. loops - Php multiplication table for specified number - Stack Overflow

    To create regular multiplication table, for example 10x10 we would write something like this: echo "<table border=\"1\">"; for ($r =0; $r < $rows; $r++){ echo'<tr>'; for ($c = 0; $c < $cols; $c++) …

  3. Multiplication Table in PHP using For loop - W3CODEWORLD

    May 14, 2022 · In this article, you will learn how to make a multiplication table in PHP using for loop, while loop, and function. You should have the knowledge of the following topics in PHP …

  4. Learn to Create a Multiplication Table in PHP - W3Schools

    Learn how to create a multiplication table using PHP. This tutorial helps you understand how to create an HTML table dynamically using nested loops in PHP.

  5. Multiplication table in PHP - Newtum

    Apr 26, 2024 · A multiplication table in PHP is created using loops to generate a grid of multiplication results. It aids in learning arithmetic and programming concepts, making it a …

  6. PHP Program to Print Multiplication Table - Online Tutorials …

    Jan 31, 2025 · In this method, we use a simple loop to calculate and display the multiplication table for a given number. It uses a basic iteration working, where the program calculates each …

  7. How to use FOR Loops in PHP — CODING ACADEMY

    Jun 26, 2019 · In this lesson I will show you how to use FOR loops in PHP. After starting off with a basic loop to print out the first 10 counting numbers, then extending into decreasing values …

  8. For Loop Table in PHP - Stack Overflow

    Apr 1, 2014 · I am trying to generate a table with php for loop, that lists numbers. Something like this: I still have problems getting it, this is actually quite simple, but I have not been able to …

  9. PHP Program - Print Multiplication Table | PHP Tutorials for …

    Oct 23, 2023 · How to print the multiplication table using PHP. First, we have to read the input from the user and store it in a variable num. Start a for loop from i =1 to 10 for printing the …

  10. Codetruster: Multiplication table using php - Blogger

    Aug 11, 2013 · In this post i haved designed how to create a multiplication table that is generated by a loop that is 12 columns across.By using for loop concept lets see how the multiplication …

  11. Some results have been removed