Posts in category MySQL
Creating a Diary style PHP Guestbook
- 07
- Nov
PHP guestbook
Today I prepared new interesting tutorial – I will tell how you can create ajax PHP guestbook with own unique design. Our records will be saved into SQL database. This table will contain next info: name of sender, email, guestbook record, date-time of record and ip of sender. Of course, we will use jQuery too (to make it ajaxy). One of important features will spam protection (we can post no more than one record every 10 minutes)!
Read more
Autocomplete with PHP, jQuery, MySQL and XML
- 11
- Oct
Autocomplete with PHP, jQuery, MySQL and XML
Today I have new article for PHP. I will tell you about implementation autocomplete for your sites. Data can be located in different sources – directly in the JS code, in the database, and even in the XML file.
Read more
How to Create Your Own 5 Stars Voting System
- 04
- Oct
How to create own voting system
Today I prepared very interesting article – today I will tell you how you can create own voting system for your items (any units at your website) with PHP. I prepared two SQL tables: first table will keep our demo items. It contain several fields: title, description, time of adding, rate value and count of rates. Another table will keep records of voting (track). Of course – we will use jQuery too (for better behavior of interface). One of features will restriction to vote twice from one IP during 1 week!
Read more
Creating ajaxy Chained Selects with jQuery
- 30
- May
Creating ajaxy chained selects with jQuery
Today we will talk about creating dependent (chained) selects for your projects. This can be any related elements at your website. As example dependent fields to select your profession, mobile phone, or location (which can include Country, State, Region etc). One important note – we will need all this working using AJAX technology (to make functionality fast and smooth). And, jQuery library provide us with that plugin – jquery.chainedSelects.js. I will show you how to create chained fields using this plugin.
Read more
How to make a PHP Guestbook with Math Captcha Security
- 16
- Feb
PHP Guestbook with using math captcha
Today I will tell you how to create your own guestbook with spam protection system – math captcha. This will and easy for your members and also good new protection from bots. In our guestbook we will use mySQL to store records.
Read more
How to Easily Make Your own RSS Feed
- 03
- Jun
How to Easily Make your own RSS feed using PHP + SQL
RSS Feed is an important part of a website/blog to attract and bring back users and make them permanent readers. Blogs like wordpress have built in rss reader, but if your website doesn’t have a rss system this tutorial is just the thing you need. As we know, RSS feeds usually using to transfer some news to readers. Today I will tell you how to create such feeds and fill it with information from database.
Read more
How to Easily Make a PHP Chat Application
- 07
- May
How to Easily Make Chat application with PHP + SQL
Today I will tell you about creating simple Chat application using our existing login system. This will useful and most simple solution. We will able to chat with our logged members. We will use database to store messages.
Read more
How to Easily Make a PHP Shoutbox Application
- 09
- Apr
How to Easily Make Shoutbox application with PHP
Today I will tell you about creating easy Shoutbox application using our existed login system. This will useful and simple solution. We will able to shout something with our logged members. We will use database to store messages.

Creating Your Own Commenting System from Scratch
Date: 14th Oct 2011 Author: admin Categories: AJAX, HTML/CSS, jQuery, PHP 12
Tags: commenting system, comments, creating, PHP, script, system
How to create own commenting system
Today I prepared new interesting article – I will tell how you can create own commenting system (AJAX) for your items (any units at your website) with PHP. For our demonstration – I prepared two SQL tables: first table will keep records of our items. It contain several fields: title, description, time of adding and comments count. Another table will keep records of comments. We will use jQuery too (for better interface behavior). One of features will spam protection (we can post no more than one comment every 10 minutes)!
Read more