|
|
|
A nice guestbook with smilies, flags, and etc. Uses mysql and a php. See example at
http://203.177.253.132/guestbook. |
|
| bookmarker - PHP, PHPLIB, MySQL WWW based bookmark manager Categories : MySQL, PHP, MySQL, Complete Programs, Databases | | | Retrieve text from table and email to your e-
address in pipe delimited format. Categories : PHP, MySQL | | | Accepts a database & hostname from a user and then HTTP username and password. Uses this to connect to a MySQL database. Produces a form based on the tables it finds there to allow the user to do SELECTs, INSERTs, and DELETEs. Categories : Databases, PHP, MySQL, Complete Programs | | | a function that builds an HTML select list from any mysql table. Categories : PHP, MySQL, HTML and PHP | | | phpAds, a complete banner and ad management system with detailled tracking and stats. Categories : MySQL, Complete Programs, Ecommerce, PHP, Databases | | | Point and Click Interface ala MS Access for creating SQL statements. Categories : MySQL, Complete Programs, General SQL, PHP, Databases | | | PHP4 MYSQL Authentication Script with cookie. Short & Sweet
Categories : Authentication, Apache, Cookies, PHP, MySQL | | | Message of the Day - Random Message (Needs MySQL!) Categories : Databases, HTML and PHP, PHP, MySQL | | | email new items in db Categories : PHP, Email, Databases, MySQL, Beginner Guides | | | Alternating background color for HTML table rows Categories : PHP, Databases, MySQL, HTML and PHP | | | color codes for positive and negative numbers Categories : PHP, MySQL, Databases, HTML | | | Authorize Me! An authentication script. Categories : MySQL, Databases, Authentication, PHP | | | A very simple way to build and do a hierarchical html categories browser without javascript , just using html php and mySql
Categories : HTML and PHP, Databases, Algorithms, PHP, MySQL | | | Linked comboboxes with php-mysql & javascript Categories : PHP, Java Script, Databases, MySQL | | | mysql_escape_string Categories : PHP, MySQL, Databases, Strings | |
| | | | Romel Cuzon wrote : 718
see example at http://203.177.253.132/guestbook/index.php
or http://203.177.253.141/guestbook/index.php
| | | | Linda Kane wrote : 753
Sample links do not work.
| | | | k praveen wrote : 783
It`s looking cooooooool
| | | | ROMEL CUZON wrote :854
guestbook.sql should be:
*******************
create database gb;
use gb;
DROP TABLE IF EXISTS guestbook;
CREATE TABLE guestbook (
name varchar(50),
date varchar(40),
email varchar(50),
comment longtext,
homepage varchar(50),
aim varchar(40),
icq int(25) DEFAULT `0` NOT NULL,
yim varchar(40),
photo varchar(200);
location varchar(100),
nationpic varchar(100);
nation varchar(100),
id int(4) DEFAULT `0` NOT NULL auto_increment,
PRIMARY KEY (id)
);
as you see nationpic varchar(100); was missed
it should work now!!!
| |
|
|
|