In this article, you will learn How to Print Div in PHP using For Looping.<html> <head> <title>div's</title> <style> .ak{ heigth:150px; width:50px; border:1px solid; } </style> </head> <body> <form method="POST"> <h1 name="first"><?php for($i=0;$i<=5;$i++) { echo '<div class="ak">' .$i . '</div>'.'<br>' …
In this article, you will learn How to Print Div in PHP using For Looping.
<html> <head> <title>div's</title> <style> .ak{ heigth:150px; width:50px; border:1px solid; } </style> </head> <body> <form method="POST"> <h1 name="first"><?php for($i=0;$i<=5;$i++) { echo '<div class="ak">' .$i . '</div>'.'<br>'
In this article, you will learn How to use condition Statements in PHP<?php $a = 15; $b = 20; $c = 30; if($a > $b) { if($a > $c) { echo $a.' is greater'; } else { echo $c.' …
In this article, you will learn How to use condition Statements in PHP
<?php $a = 15; $b = 20; $c = 30; if($a > $b) { if($a > $c) { echo $a.' is greater'; } else { echo $c.'