Last active
September 8, 2016 15:39
-
-
Save MkLHX/c74ef0a504f57bdf3fcb79fbcc484f48 to your computer and use it in GitHub Desktop.
Dans_la_peau_d'un_cornac
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
img{ | |
width: 200px; | |
height: 200px; | |
margin-left: auto; | |
margin-right: auto; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html lang="fr"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> | |
<link rel="stylesheet" href="bootstrap-3.3.7-dist/css/bootstrap.min.css" type="text/css"/> | |
<link rel="stylesheet" href="font-awesome-4.6.3/css/font-awesome.min.css" type="text/css"/> | |
<link rel="stylesheet" href="custom.css" type="text/css"> | |
<script src="jquery-3.1.0.min.js"></script> | |
<script src="bootstrap-3.3.7-dist/js/bootstrap.min.js"></script> | |
<Title>Spectacles</Title> | |
</head> | |
<body> | |
<header> | |
<h1>Bienvenue sur le programme des spectacles</h1> | |
</header> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
include('header.php'); | |
include('tableau.php'); | |
echo'<table class="table table-striped table-bordered"> | |
<thead> | |
<tr> | |
<td>Heure</td> | |
<td>Titre_Spectacle</td> | |
<td>Artiste</td> | |
<td>Image_Url</td> | |
</tr> | |
</thead> | |
<tbody> | |
'; | |
for($i=1;$i<count($prog);$i++){ | |
//['Heure','Titre_Spectacle','Artiste','Image_Url'] | |
echo '<br/>'; | |
echo '<tr><td>'.$prog[$i]['Heure'].'</td><td>'.$prog[$i]['Titre_Spectacle'].'</td><td>'.$prog[$i]['Artiste']."</td><td><img src=".$prog[$i]['Image_Url'].' class="img-responsive"></td></tr>'; | |
} | |
echo'</tbody> | |
</table>'; | |
include('footer.php'); | |
?> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$prog = [['Heure','Titre_Spectacle','Artiste','Image_Url']]; | |
$prog[1]['Heure'] = "18h00"; | |
$prog[1]['Titre_Spectacle'] = "Guillaume fait sont show"; | |
$prog[1]['Artiste'] = "Guillaume Curiel"; | |
$prog[1]['Image_Url'] = "gc.jpg"; | |
$prog[2]['Heure'] = "21h00"; | |
$prog[2]['Titre_Spectacle'] = "Moi"; | |
$prog[2]['Artiste'] = "Jamel Debbouze"; | |
$prog[2]['Image_Url'] = "jamel.jpg"; | |
$prog[3]['Heure'] = "23h00"; | |
$prog[3]['Titre_Spectacle'] = "L'autre, c'est pas moi!"; | |
$prog[3]['Artiste'] = "Gad Elmaleh"; | |
$prog[3]['Image_Url'] = "gad.jpg"; | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment