227
PHP
5 $File=_______($FileName, 'r') or die("Cannot open file!");
6 print("<table border=1>");
7 while(!feof($_______)) {
8 $line1=fgets($______, 120);
9 $line2=___________($______, 120);
10 print("<tr><td>$line1</td><td>$line2</td></tr>");
11 };
12 fclose($_________);
13 print("______________");
14 print("</body></html>");
15 ?>
3. Develop a web- based application project by using PHP, with a scenario design
diagram for the project. e project has a web page with a form. On the cli-
ent side, the user can submit the form with input data. On the server side, the
submitted data are stored and cumulated on a disk file. is disk file is further
processed by Excel in batch.
4. Develop a web- based application project by using PHP to pass data through ...