Plik shoutbox.php
<?php require_once("../zapytania.php"); mysql_connect ("mysql3.superhost.pl","sh178151_admin","xxx"); //łącze z bazą ("serwer bazy","użytkownik","hasło") { //Definicja zmiennych $ip = $_SERVER['REMOTE_ADDR']; //Wykonujemy zapytanie importujące zdefiniowane dane mysql_query ("INSERT INTO `posty` (`login`, `tresc`, `data`, `ip`) VALUES('$login', '$tresc', '$data', '$ip')"); //No i przenosimy użytkownika z powrotem do shoutboxa } else { //Pobieramy dane z bazy //Początek struktury tabeli //Pętla do wyświetlenia wszystkich wpisów echo '<tr class="wpis"><td>' .'<b>'.$shout['login'].':</b> ' //wyświetlamy nick .$shout['tresc'] //wyświetlamy treść .'<br/><span class="data">' .$shout['data'] //wyświetlamy datę .'</span></tr></td>'; } // //Koniec struktury tabeli } //print_r($_SERVER); ?> <form action="" method="POST" id="shoutbox"> <?php require_once("../zapytania.php"); echo'<input type="hidden" name="login" value="'.$data['login'].'" />'; ?><br/> Treść: <input type="text" name="tresc" maxlength="125" /> <button type="submit" name="wyslij">Napisz</button> </form>
Plik index.php
OCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <title>ShoutBox</title> <meta http-equiv="content-type" content="text/html; charset=UTF-8"> <link rel="stylesheet" type="text/css" href="styles.css" /> <style type="text/css"> html,body{margin:0;padding:0} body{ background: #3399FF; font: 76% arial,sans-serif;text-align:left} p{margin:0 10px 10px} a{padding:5px; text-decoration:none; color:#000000;} #shoutbox { width:100%; font-size: 11px; text-align:left background: green; } #shoutbox .wpis { background: #BFBD93; text-align:left} #shoutbox .data { color: #444; font-size: 10px; } #shoutbox input { background: #BFBD93; text-align:left border: 1px solid #444; height: 13px; font-size: 11px; } #shoutbox button { background: #BFBD93; text-align:left border: 1px solid #444; height: 18px; font-size: 11px; } form { padding-left: 3px; } </style> <!--[if lte IE 6]><style type="text/css">#freecssfooter{position:absolute;}</style><![endif]--> </head> <body> <div id="extra"> <p><?php include('shoutbox.php'); ?></p> </div>
Witam! Chciałbym do tego chata dodać emotki:
lol2 - http://emotikona.pl/emotikony/code.php?n=01icon_lol2.gif
: ) ( bez spacji ) - http://firegifts.pl/images/emoticons/wink.gif
Pomocy!