Loops ប្រើសម្រាប់ឲ្យកូដណាមួយ
ដំណើរការឡើងវិញដដែលៗ ឬកំណត់ចំនួនដង ដើម្បីឲ្យ កូដណាមួយធ្វើដំណើរការ។ នៅក្នុង PHP
យើងមាន Loops មួយចំនួនដូចខាងក្រោម៖
ü
While
ü
Do while
ü
For
ü
Foreach
While Loop គឺដំណើរការនៅពេល លក្ខខណ្ឌនៃកូដរបស់យើង
ពិត។
Syntax:
While(Conditional)
{
កូដដែលនិងដំណើរការ
នៅពេលលក្ខខណ្ឌនោះពិត
}
N
|
1
|
Code
|
<form method="post" target="_self">
Input
Value:<input type="text" name="txtinput" />
Number Time:<input
type="text" name="txttime" />
<input type="submit" name="btnshow"
value="Result" />
</form>
<?php
$input=$_POST["txtinput"];
$time=$_POST["txttime"];
$i=1;
$result="";
if(isset($_POST["btnshow"])){
while($i<=$time)
{
$result=$result.$input."<br>";
$i++;
}
echo
$result;
}
?>
|
Result
|
|
|
2
|
Code
|
<form method="post"
target="_self">
Multi
By:<input type="text" name="txtn" />
<input type="submit"
name="btnsub" value="Multi" />
</form>
<?php
$multi=$_POST["txtn"];
$i=1;
$result="";
if(isset($_POST["btnsub"])){
while($i<=$multi){
$result=$result.$multi.'x'.$i.'='.$multi*$i."<br>";
$i++;
}
echo
$result;
}?>
|
Result
|
|
|
3
|
Code
|
<form method="post"
target="_self">
Multi
By:<input type="text" name="txtn" />
<input type="submit"
name="btnsub" value="Multi" /></form>
<?php
$multi=$_POST["txtn"];
$i=1;
$result="";
if(isset($_POST["btnsub"])){
while($i<=10){
$result=$result.$multi.'x'.$i.'='.$multi*$i."<br>";
$i++;
}
echo
$result; }?>
|
Result
|
|
0 សូមធ្វើការតំលៃផង:
Post a Comment