Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- require_once('config.php');
- $query = "SELECT * FROM lol";
- $sql = mysql_query($query);
- if (mysql_errno() == 1022) { print 'no way!';}
- if (isset($_GET["boka"])) {
- $sql = "INSERT INTO lol (id, teamname, player1, player2, player3) VALUES ('','$_POST[teamname]','$_POST[player1]','$_POST[player2]','$_POST[player3]')";
- mysql_query($sql) or die(mysql_error());
- }
- ?>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
- <title>Xodia</title>
- <body>
- <form action="?boka" Method="POST">
- <label style="float:left; font-family: Lucida Grande, Geneva, Arial, Verdana, Helvetica, sans-serif; font-size: 11px; color: #cccccc;">Lagnamn:</label> <input type="text" name="teamname" style="margin-left:25px;"><br><br>
- <label style="float:left; font-family: Lucida Grande, Geneva, Arial, Verdana, Helvetica, sans-serif; font-size: 11px; color: #cccccc;">Spelare1:</label> <input type="text" name="player1" style="margin-left:25px;"><br><br>
- <label style="float:left; font-family: Lucida Grande, Geneva, Arial, Verdana, Helvetica, sans-serif; font-size: 11px; color: #cccccc;">Spelare2:</label> <input type="text" name="player2" style="margin-left:25px;"><br><br>
- <label style="float:left; font-family: Lucida Grande, Geneva, Arial, Verdana, Helvetica, sans-serif; font-size: 11px; color: #cccccc;">Spelare3:</label> <input type="text" name="player3" style="margin-left:25px;"><br><br>
- <input type="submit" value="Registrera">
- </form>
- </body>
- </html>
- <?php
- $query = mysql_query("SELECT * FROM lol ORDER BY id ASC") or die(mysql_error());
- if (mysql_num_rows($query)) {
- while ($text = mysql_fetch_assoc($query)){
- echo '<lable style="font-family: Lucida Grande, Geneva, Arial, Verdana, Helvetica, sans-serif; font-size: 15px; color: #cccccc;"><b>Lagnamn</b>: <u>'.$text['teamname'].'</u> - Lineup: '.$text['player1'].' .:. '.$text['player2'].' .:. '.$text['player3'].'</lable><br>';
- }
- }
- ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement