WeberDev.com PHP and MySQL Code

LOG IN
BEGINNER GUIDES  |  PHP CLASSES  |  CODE SEARCH  |  ARTICLES SEARCH  |  PHP FORUMS  |  PHP MANUAL  |  PHP FUNCTIONS LIST  |  WEB SITE TEMPLATES
Start typing to search for PHP and MySQL Code Snippets and Articles Search
Submit a code Example / Snippet Submit Your Code
Search Engine Optimization Monitor SEO Monitor
Web Site UpTime Monitor UpTime Monitor
WeberDev's Monthly code contest PHP Code Contest
Your Personal Examples List My Favorite Examples
Your Personal Articles List My Favorite Articles
Edit Account Info Update Your Profile
PHP Code Search
Web Development Forums
Learn MySQL Playing Trivia
PHPBB2 Templates
Web Development Index
PHP Web Logs (BLogs)
Web Development Resources
Web Development Content
PHPClasses
PHP Editor
PHP Jobs
Vision.To Design
Ajax Tutorials
PHP Programming Help
PHP/MySQL Programming
Webmaster Resources
Webmaster Forum
XML meta language
website builder
Submit Site
Forex Trading Online forex trading platform

Go Back Add a Comment Send this example to a friend Add this Article to your personal favoritest for easy future access to your favorite Code Examples and Articles. Submit a code example Print this code example.
BACK ADD A COMMENT SEND TO A FRIEND ADD TO MY FAVORITES ADD CODE EXAMPLES PRINT
Title : A nice guestbook with smilies, flags, and etc. Uses mysql and a php.
Categories : PHP, MySQL Update Picture
Romel Cuzon
Date : Oct 19th 2001
Grade : 4 of 5 (graded 6 times)
Viewed : 13456
File : guest.zip
Images : No Images for this code example.
Search : More code by Romel Cuzon
Action : Grade This Code Example
Tools : My Examples List

  Submit your own code examples 
 

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!!!