πŸš€ DevOps & SRE Certification Program πŸ“… Starting: 1st of Every Month 🀝 +91 8409492687 πŸ” Contact@DevOpsSchool.com

Upgrade & Secure Your Future with DevOps, SRE, DevSecOps, MLOps!

We spend hours on Instagram and YouTube and waste money on coffee and fast food, but won’t spend 30 minutes a day learning skills to boost our careers.
Master in DevOps, SRE, DevSecOps & MLOps!

Learn from Guru Rajesh Kumar and double your salary in just one year.


Get Started Now!

How to print a table of any number in PHP embedded in HTML? -2

How to print a table of any number in PHP?

What is Table?

Table(The Multiplication tables): A table that shows you the results of multiplying of two numbers.

Logic of this:

1.Define a number.

2.Run for Loop.

3.Multiply this number with for loop output.

Now you can see its code:

<?php
extract($_REQUEST);
if (isset($submit)) {
$num;
echo "<h3>Table of this $num number:</h3>";
for($i=1 ; $i<=10 ; $i++)
{
echo $num. "*" .$i . "=" . $num*$i;
echo "</br>";
}
}
?>
<!DOCTYPE html>
<html>
<head>
<title>Table of a Number</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel ="stylesheet" type="text/css" href="css/bootstrap.min.css">
<link href="https://fonts.googleapis.com/css2?family=Volkhov&display=swap" rel="stylesheet">
<style>
body{
font-family: 'Volkhov', serif;
font-size: 25px;
}
.container{
width: 50%;
margin: 0 auto;
border-radius: 5px;
background-color: #f2f2f2;
padding: 40px;
font-size: 20px;
}
input[type=submit]{
background-color: #4caf50;
color: white;
padding: 12px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
float: right;
}
.col-6{
float: left;
width: 25%;
margin-top: 6px;
align: right;
}
.row:after{
content: " ";
display: table;
clear: both;
}
</style>
</head>
<body>
<section>
<div class="container">
<form action="tableofnumber.php" method="POST">
<div class="row">
<label>Please enter Number here</label>
</div>
<div class="row">
<div class="col-6">
<input type="text" name="num" placeholder="Please enter number here"id="number" autocomplete="off">
</div>
<div class="col-6">
<input type="submit" class="btn btn-success btn-lg" name="submit" value="Submit">
</div>
</div>
</form>
</div>
</section>
</body>
</html>
Entering 5 as input
Here’s the output of 5 number.

Thanks

Certification Courses

DevOpsSchool has introduced a series of professional certification courses designed to enhance your skills and expertise in cutting-edge technologies and methodologies. Whether you are aiming to excel in development, security, or operations, these certifications provide a comprehensive learning experience. Explore the following programs:

DevOps Certification, SRE Certification, and DevSecOps Certification by DevOpsSchool

Explore our DevOps Certification, SRE Certification, and DevSecOps Certification programs at DevOpsSchool. Gain the expertise needed to excel in your career with hands-on training and globally recognized certifications.