You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.4 KiB
38 lines
1.4 KiB
|
|
<?php
|
|
$VIDEOS[]=array("a_pgaUaH6JQ","01/12/2012","Il concorso straordinario per l'assegnazione delle sedi farmaceutiche");
|
|
$VIDEOS[]=array("38dLQlcFpO0","05/04/2016","Ordine dei Farmacisti Roma - Serata informativa procedure concorso straordinario regione Lazio");
|
|
$VIDEOS[]=array("HYMVdD9eRb4","19/06/2018","ANTIBIOTICO RESISTENZA");
|
|
?>
|
|
|
|
|
|
<table border="0" cellspacing="2" cellpadding="4" width="100%" align="center"><tr>
|
|
<td align="center" valign="top" width="650" bgcolor="#000000">
|
|
|
|
|
|
<?php
|
|
|
|
if($_GET['q']){
|
|
echo "<iframe width=\"640\" height=\"485\" src=\"https://www.youtube.com/embed/".$_GET['q']."\" frameborder=\"0\" allowfullscreen></iframe>";
|
|
}else{
|
|
echo "<iframe width=\"640\" height=\"485\" src=\"https://www.youtube.com/embed/".$VIDEOS[count($VIDEOS)-1][0]."\" frameborder=\"0\" allowfullscreen></iframe>";
|
|
}
|
|
|
|
?>
|
|
|
|
</td><td align="center" valign="top" bgcolor="#AACC88">
|
|
|
|
<?php
|
|
|
|
for($i=(count($VIDEOS)-1);$i>=0;$i--){
|
|
|
|
echo "<table border=\"0\" cellspacing=\"0\" cellpadding=\"4\" width=\"100%\" bgcolor=\"#C0D48F\">";
|
|
echo "<tr><td height=\"90\" width=\"120\"><a href=\"?q=".$VIDEOS[$i][0]."\"><img src=\"http://i2.ytimg.com/vi/".$VIDEOS[$i][0]."/default.jpg\"></td>".
|
|
"<td valign=\"top\" class=\"txt_lit_red\"><b>".$VIDEOS[$i][1]."</b><br><a href=\"?q=".$VIDEOS[$i][0]."\" class=\"txt_lit_black\">".$VIDEOS[$i][2]."</tr></table><br>";
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
|
|
</td></tr></table>
|