| TOTAL: 18 Page: 1 of 1 |
|
Make A Self Updating Linkme Page or Site Tagger
Ok this tutorial will show you how to make a linkme page like I have Here It is very simple but if you really need help just email me or leave a message on the tagboard please not this is a small code i put together with alot of other small codes so yeah its kinda cool. All you need to change is the $path to the folder your linkback images are in and then upload all your linkback images into it Here is the php code for it $path = "images/linkback"; $dir = @opendir($path);

| Hits: | 52 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-21 |
The Complete Shoutbox Tutorial - Your Guide to creating a complete shoutbox!
In this tutorial I will detail everything you need to know about making your very own shoutbox, right down from the HTML form, to the smilie emoticon configuration and anti-spam measures. You will need the following to be able to complete this tutorial: * A PHP enabled webserver. * A mySQL database. * An hour of free time. * Sessions enabled. * File uploads enabled. Getting Started As a first step we should think about the layout and size of our shoutbox - 150px

| Hits: | 184 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-21 |
Basic Shout Box
Ok, You're kind of new to PHP programming and you deeply want to have a place where people browsing your site can leave some comments on your site... isn't that cute. Well, you've surely seen it before, the Shoutbox. First things first, what to we need to get this working?! A host that supports PHP, the access to a mySQL database, a text editor and some coffee to stay awake of my boring speeches. Step 1 - Creating the mySQL table Before we get to the codes of the shoutbox, let's

| Hits: | 36 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-21 |
PHP/MySQL Shout Box
This tutorial is very similar to the news portal and a basic shoutbox. Alright, in this case, let's do the php code first. It should like something like below. You are more than welcome to change anything you want as long as you know what you are doing. $name: $message "); $file = fopen("tag.php", "r"); $read = fread($file, filesize("tag.php")); fclose($file); $invano = fopen("tag.php", "w"); //Leave a

| Hits: | 31 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-21 |
Shoutbox
Shoutboxes have become a popular way to leave messages at a site. Sponsors - Spoono Host If you don't know what a ShoutBox is, you can check one out at Deskmod. They're a neat way to let the visitor interact with your website without the hassle of a guestbook. Making your own shoutbox at first might seem hard, but its simple and easy to make. You can see my code that I worked on and made sure worked by right clicking and saving shoutbox.txt. In fact, the one for this tutorial is only 35 li

| Hits: | 39 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-21 |
Comment Board
This is a three-part tutorial that shows you hwo to make a comment/discussion board like those on this site using PHP and mySQL. there are three files: comments.php, which displays the comments, commentadd.php, which processes the comment, and commentform.html which is simply a form that can be placed in any page manually or per SSI (server side includes). I realize that it is possible to have all three components in one file, but we are using this multifile method for tutorial functionality

| Hits: | 52 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-21 |
Very simple blog with simple control panel!
This tutorial will talk you through making your very own blog system. ---------------------Editing THE DATABSE(with PHPmyAdmin)---------------------------- 1) Create a database with any name But make sure you remember the settings 2) Create a field with 4 rows. id (int, auto increcement, primary), Title (text), Date (date), Content (long text) 3) Now we've created a field create an entry, Just add test in everything apart from date and id. ---------------------------------------------------

| Hits: | 52 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-20 |
WoogieNoogie\'s VERY COMPLETE PHP and MySQL Blog Tutorial
This tutorial will teach you how to create your own blog tool through HTML, PHP, MySQL, and HTACCESS. This blog includes comments and an admin panel. This tutorial is very bare-bones...easily customisable through CSS and HTML. This tutorial is meant to give you code, not design. This coding is very secure, it goes through PHP and HTACCESS to guarantee nobody will be able to hack your blog without knowing the password. The way this tutorial works, I give a line by line explanation of what t

| Hits: | 57 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-20 |
PHP Shoutbox - Full tutorial on creating a PHP and MySQL Shoutbox tagger!
Ok people, let's learn how to make an shoutbox, nothing to advanced, but it will learn you some tricks, or at least, I hope it will! REQUIREMENTS - PHP enabled server - MySQL database - notepad MAKING - shout.php = view the shouts - addshout.php = add shouts - MySQL table = storage place for all the shouts People, we begin by making the MySQL table, you know where we want to store all our shouts! now go to your phpmyadmin, or wathever you use, and run this in a query

| Hits: | 65 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-20 |
Make a site plugger - Help spread the word on websites
Many sites these days have a little area where you can submit your site to be displayed in a little window so others can see it and click on it, therefore generating traffic to your site. This little bugger is called a plugger, and today I'm going to teach you how to make such a thing! Before you start reading though, I must tell you that there is a fair bit of reading involved, and you must have PHP installed on either your server or your computer, you must have the ability to CHMOD and all fil

| Hits: | 53 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-20 |
Creating an advanced website shoutbox with PHP and MySQL
This is a huge tutorial on creating a shoutbox, with a name, URL/ Link and message. But it will also record the IP and date. First off, we'll need a database, to hold the data in. Open PHPmyAdmin, and run this query: Code: CREATE TABLE `shoutbox` ( `id` INT NOT NULL AUTO_INCREMENT , `ip` TEXT NOT NULL , `name` TEXT NOT NULL , `url` TEXT NOT NULL , `message` TEXT NOT NULL , `date` TEXT NOT NULL , PRIMARY KEY ( `id` ) ) TYPE = MYISAM This creates a table called "shoutbox", wi

| Hits: | 85 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-20 |
Full Shoutbox Tutorial - Create a fairly advanced PHP and MySQL based Shoutbox
I decided to put this tutorial in the php section because the main bulk of it is in PHP. But if you want to move it to the database section then please do so! Right down to the tutorial! This script basically uses a form and a table in a database to add shouts, it records the date and also puts that in the post so people know when it was written. The 1st thing you will need to do is setup the database, however you do that is upto you (I cheat and use CPanel) and then we can make the config

| Hits: | 26 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-20 |
Creating a Shoutbox - A complete shoutbox Script
this tutorial I’m going to teach you how to make your own shout box! I assume you have quite a lot of knowledge of PHP. This is all about the coding and not the designing so it will be just in plain text! Well first we need to think of what the steps will be. Here’s a little scheme of the project. - Creating a MySQL table where the data will be stored, it will have 5 columns. ID, IP, Name, Time, Message. - Creating a HTML form where people can add a shout. It will contain: Name, Message.

| Hits: | 27 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-20 |
Shoutbox - A simple shoutbox with user authorization capability
CREATE TABLE `shoutbox` ( `id` int(11) NOT NULL auto_increment, `message` text NOT NULL, `author` varchar(20) NOT NULL default '', `email` varchar(50) NOT NULL default '', `date` varchar(20) NOT NULL default '', `ip` varchar(20) NOT NULL default '', PRIMARY KEY (`id`) ) TYPE=MyISAM PACK_KEYS=0 AUTO_INCREMENT=0 This is the code used to display the shouts on whatever page you choose to put it on, name it shout.php

| Hits: | 69 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-20 |
Flatform Shoutbox - MASSIVE and detailed tutorial on this text file based shoutb
K, this is how to make a shoutbox, flat-files version so there is no need for a MySQL DataBase. Features -Word Filtering -Spam Ban -Error Handling -Website Display -Tag Removal -Smilies! Requirements: PHP 4.x FTP access: ability to add folders, files, and set CHMOD properties SmartFTP or a FTP program

| Hits: | 16 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-20 |
Simple Shoutbox - Learn how to make this easy and original shoutbox
In this tutorial i will explain how to make a simple shoutbox For this tutorial, you will need an sql host, if you dont have one, you can get it in http://freesql.org 1. Create a new table, for that, run this code CODE CREATE TABLE `shoutbox` ( `id` int(11) NOT NULL auto_increment, `name` text NOT NULL, `message` longtext NOT NULL, PRIMARY KEY (`id`) ) TYPE=MyISAM;

| Hits: | 41 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-20 |
Comment Form Script Tutorial - Allow users to display and post comments on a pag
This is a fairly advanced tutorial, and I don't go into a lot of detail to explain my script. Now on to the tutorial... Database: Create MySQL table All the data from the comments form is stored in a MySQL database. If you do not have a database created, create one now. Now use the following MySQL command to create a new table to store the information: CREATE TABLE `comments` ( `commentid` int(11) NOT NULL auto_increment, `tutorialid` int(11) NOT NULL default '0', `name` text NOT

| Hits: | 43 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-20 |
Uising Line Breaks - Easy code for tagboards to add line breaks
If you have wondered how my tagboard does the new line thing then this will help you. Some of you might have noticed that when you press enter it makes a new line when you display it. All you have to do is run this with your row: $message = nl2br($row[message]); Now when you echo $message instead of saying Line1Line2Line3 it will say Line1 Line2 Line3 Just try it and at least you will know that the command exists and you can use it when you need to. Now for everyone who wants

| Hits: | 22 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-20 |