Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- //$flight sono tutti gli articoli di DLIB pt.1
- $flight = array(
- //ARTICOLI DI ALMATOURISM
- "Food, Tourism and Health: a Possible Sinergy?" => "http://almatourism.unibo.it/article/view/5290",
- "Food and Wine Tourism: an Analysis of Italian Typical Products" => "http://almatourism.unibo.it/article/view/5293",
- "Food and Wine Tourism as a Pull Factor for Tuscany" => "http://almatourism.unibo.it/article/view/5294",
- "Promoting Gastronomic Tourism to Foster Local Development: The Stakehodelrsβ Perspective" => "http://almatourism.unibo.it/article/view/5292",
- "The Douro Region: Wine and Tourism" => "http://almatourism.unibo.it/article/view/4647"
- );
- echo "<ol>";
- foreach($flight as $i => $value){
- //echo $i. " ===> " . $flight[$i] . "<br>";
- //echo "<li><a onclick= href=\"".$flight[$i]."\"".">".$i."</a></li></br>";
- echo "
- <li>
- <a onclick=\"theCall(".$flight[$i]."):>".$i."</a>
- </li></br>";
- }
- echo "</ol>";
- ?>
Advertisement
Add Comment
Please, Sign In to add comment