In this article, we will explain the Looping statement in PHP. The looping statement is used for a specific number of times with the condition.Following Looping Statements are used in PHPFor LoopWhile LoopDo While LoopForeach…
In this article, we will explain the Looping statement in PHP. The looping statement is used for a specific number of times with the condition.
Following Looping Statements are used in PHP
In this article, you will learn Even Odd Program in PHP using For Loop <?php echo "even no. are-" ." "; for($i=1;$i<=100;$i++){ if($i%2==0){ echo '(' .$i .')' ." "; } } echo "<br>"; echo "odd no. are-" ." "; for($i=0;$i<=100;$i++){ …
In this article, you will learn Even Odd Program in PHP using For Loop
<?php echo "even no. are-" ." "; for($i=1;$i<=100;$i++){ if($i%2==0){ echo '(' .$i .')' ." "; } } echo "<br>"; echo "odd no. are-" ." "; for($i=0;$i<=100;$i++){
In this article, you will learn How to Create Auto Counter in PHP.counter.php<?php $fp=fopen("count.txt","r"); if(!($fp=fopen("count.txt","r"))) { die('file not found'); } else { $counter=(int)fread($fp,20); fclose($fp); $counter++; echo "you are visitor no.".$counter; $fp1=fopen("count.txt","w"); fwrite($fp1,$counter); fclose($fp1); } ?>count.txt file will …
In this article, you will learn How to Create Auto Counter in PHP.
counter.php
<?php $fp=fopen("count.txt","r"); if(!($fp=fopen("count.txt","r"))) { die('file not found'); } else { $counter=(int)fread($fp,20); fclose($fp); $counter++; echo "you are visitor no.".$counter; $fp1=fopen("count.txt","w"); fwrite($fp1,$counter); fclose($fp1); } ?>
count.txt file will …