Guest User

Untitled

a guest
Jul 22nd, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. <?php
  2. $row = 1;
  3. if (($handle = fopen("movies.txt", "r")) !== FALSE) {
  4. while (($data = fgetcsv($handle, 1000, ",")) !== FALSE) {
  5. for ($i = 0; $i <= $num; $i = $i+4) {
  6. $num = count($data);
  7. $row++;
  8.  
  9. echo "<h2>" . $data[$i] . "</h2>\n";
  10. echo "<a href=" . $data[$i + 1] . ">" . $data[$i] . "</a>\n"; echo "/"; echo "<strong>Released:</strong> " . $data[$i + 2] . "<br />\n";
  11. echo "<strong>Rating</strong>: " . $data[$i + 3] . "/5 <br />\n";
  12. echo "<strong>Message:</strong> " . $data[$i + 4] . "\n";
  13. }
  14. }
  15. fclose($handle);
  16.  
  17. }
  18. ?>
Add Comment
Please, Sign In to add comment