Guest User

list.php

a guest
Oct 30th, 2015
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. <?php
  2. //$flight sono tutti gli articoli di DLIB pt.1
  3. $flight = array(
  4. //ARTICOLI DI ALMATOURISM
  5. "Food, Tourism and Health: a Possible Sinergy?" => "http://almatourism.unibo.it/article/view/5290",
  6. "Food and Wine Tourism: an Analysis of Italian Typical Products" => "http://almatourism.unibo.it/article/view/5293",
  7. "Food and Wine Tourism as a Pull Factor for Tuscany" => "http://almatourism.unibo.it/article/view/5294",
  8. "Promoting Gastronomic Tourism to Foster Local Development: The Stakehodelrs’ Perspective" => "http://almatourism.unibo.it/article/view/5292",
  9. "The Douro Region: Wine and Tourism" => "http://almatourism.unibo.it/article/view/4647"
  10.  
  11. );
  12. echo "<ol>";
  13. foreach($flight as $i => $value){
  14. //echo $i. " ===> " . $flight[$i] . "<br>";
  15. //echo "<li><a onclick= href=\"".$flight[$i]."\"".">".$i."</a></li></br>";
  16. echo "
  17. <li>
  18. <a onclick=\"theCall(".$flight[$i]."):>".$i."</a>
  19. </li></br>";
  20. }
  21. echo "</ol>";
  22. ?>
Advertisement
Add Comment
Please, Sign In to add comment