home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD Actual Thematic 25: Programming
/
pc_actual_25.iso
/
Javascript
/
WebResourcesTutorial
/
socrver1.exe
/
Main
/
numberloop.php3
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2001-09-10
|
199 b
|
16 lines
<html>
<head>
<title>This page uses php</title>
</head>
<body>
<?php
$text = "";
$number = 0;
while($number < 20){
$text .= $number;
$number++;
echo $text."<br>";
}
?>
</body>
</html>