sfu_420 | Bonjour, j'essaie de créer un calendrier pour capper (hmm on ne parle pas de p2p ) voilà mon projet http://tstn.no-ip.org/cap/october1.php
j'ai 2 fichiers .php, un october1.php principal qui représente le calendrier et october.php qui sert à envoyer les données et redirige vers october1.php
je me suis inspiré du site du Zéro avec le minichat
un détail du .php october1.php
Code :
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <title>NHL 2014/15 Schedule</title>
-
- <link rel="stylesheet" href="bordure.css">
- </head>
- <body>
- <h1 class="titre"><img src="avatars/nhl.png" alt="NHL"/>National Hockey League Schedule 2014/2015<img src="avatars/nhl.png" alt="NHL"/></h1>
- <table>
- <tr>
- <th>Oct 8, 2014</th>
- <th>HD stream<br/>720p Home</th>
- <th>HD stream<br/>720p Away</th>
- <th>HD<br/>720p Home</th>
- <th>HD<br/>720p Away</th>
- <th>HD Stream<br/>540p Home</th>
- <th>HD Stream<br/>540p Away</th>
- <th>NHL Tonight</th>
- <th>Others Lang</th>
- </tr>
- <tr>
- <th><img src="avatars/mont.gif" alt="Montréal"/>@<img src="avatars/tor.gif" alt="Toronto"/></th>
- <th><form method="post" action="october.php">
- <input type="text" name="pseudo" size="12" maxlength="12"/><br/>
- <input type="submit" value="OK" />
- </form>
- <?php
- try
- {
- $bdd = new PDO('mysql:host=localhost;dbname=calendrier','root','xxxxxxx');
- }
- catch(Exception $e)
- {
- die('Erreur : '.$e->getMessage());
- }
- $reponse = $bdd->query('SELECT pseudo FROM october1');
- {
- echo htmlspecialchars($reponse['pseudo']);
- }
- ?>
- </th>
|
october.php
Code :
- <?php
- try
- {
- $bdd = new PDO('mysql:host=localhost;dbname=calendrier','root','xxxxxxxx');
- }
- catch(Exception $e)
- {
- die('Erreur : '.$e->getMessage());
- }
- $req = $bdd->prepare('INSERT INTO october1 (pseudo) VALUES(?)');
- $req->execute(array($_POST['pseudo']));
- header('Location: october1.php');
- ?>
|
|