Using PHP to search a MySQL database and return paged results PHP / Searching
PHP, MySQL and a Web Server capable of parsing PHP pages, like Apache or IIS. This search script does not spider all your pages by crawling the links, so the content you want to be searchable must be within the database. Knowledge of PHP and MySQL is also necessary because this script is just the bones of a working solution.
Importing csv data into MySQL with php script PHP / Databases
This tutorial will show you how to import csv data into MYSQL with a simple PHP script. Many times you have to write a script because the import function in phpMyAdmin will not import the way you want.
How to connect to MySQL database using PHP PHP / Databases
Before you can get content out of your MySQL database, you must know how to establish a connection to MySQL from inside a PHP script. To perform basic queries from within MySQL is very easy. This article will show you how to get up and running.
Creating a Secure PHP Login Script PHP / Membership
Explains how to create a secure PHP login script that will allow safe authentication. Features remember-me function using cookies, validates logins on each request to prevent session stealing.
Authentication and Security PHP / Membership
In this tutorial we discuss the techniques used to build web database applications that authenticate, authorize, and protect the data that is transmitted over the Web. The topics covered in this tutorial include:
* How HTTP authentication works and how it can be used with Apache and PHP
* Writing PHP scripts to manage user authentication and authorization
* Writing PHP scripts that authenticate users against a table in a database
* The practical aspects of building session-based web database applications to authenticate users, including techniques that don't use HTTP authentication
* A case study example that develops an authentication framework, demonstrating many of the techniques presented in this tutorial
* The features of the encryption services provided by the Secure Sockets Layer.
Using MySQL with PHP PHP / Databases
This tutorial describes: How to configure PHP with a MySQL server, What are the basic functions to use a MySQL server, A test script with a MySQL server.
Your First PHP Script PHP / Getting Started
In this tutorial learn how to do a PHP script. Writing a PHP script is very simple. No special software is needed, except a text editor like Notepad in which the script is written.
Random Links and images with PHP & MySQL PHP / Randomizing and Rotation
This script allows any number of images to be referenced and have an associated hyperlink attached, which makes it great for 88x31 buttons which are commonplace throughout the web. The script requires a web server with PHP and a MySQL database to store the data.
Are PHP and MySQL the Perfect Couple? PHP / Databases
This is ore of an introductory article on PHP and MySQL covering such topics as features of PHP and MySQL, and how to use PHP to interact with MySQL.
A MySQL Driven Chat Script PHP / Chats
In this article, Tim will show you how to create a quick-n-easy chat script using PHP and a very simple MySQL database. The script will allow visitors to choose a nickname, enter text to send to the chatting window, and view messages from other people... all in real-time! For a bit of fun, the chat application also has buttons to send several emote-icons including smiling and frowning faces.One of the most popular uses for the Internet is person-to-person communication.
PHP Counter script tutorial PHP / Counters
Creates your own counter script. Using a basic knowledge of php + mysql script and keeps your visitors number to database for analysis.
PHP Login script tutorial PHP / Membership
Learn to create a simple login system with php + mysql script, this tutorial easy to follow, teach you step by step.
Simple forum in php/mysql PHP / Forums and Guestbooks
If you've ever wondered how to build a simple forum in PHP/Mysql, this simple tutorial will give you the basics of how to post and reply to threads and display messages.
Basic HTML newsletter in PHP/MYSQL PHP / Emailing
This tutorial will teach you how to make a simple newsletter in PHP/MYSQL with account activation. This will require PHP that is not running in SAFE_MODE or PHP that at least allows the sendmail function(duh, you can't send mail without this enabled).