| TOTAL: 0 Page: 1 of 0 |
|
MySQL User System - Category: PHP - Author: Nick
In this tutorial, we will be making a simple MySQL user system. This user system will include register, login, logout, edit profile, and view profile. To start off, lets create our tables in MySQL. go to PHPmyAdmin, and run this SQL query on a desired Database.

| Hits: | 108 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-09 |
Member Managment System Using AJAX Part 3
In parts one and two of this tutorial we covered the user side of things, now we have to handle our administration area. This is going to be pretty simple, but the cool thing is that it will integrate totally with all our existing code. In order to protect the PM page from guests, we set our MIN_AUTH_LEVEL constant to 1, so all we need to do in order to only let administrators in is to make that value 2. Sweet. All the admin panel will do is let you edit users data (not password, you sneak

| Hits: | 90 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-09 |
Member Managment System Using AJAX Part 2
In part 1 of this tutorial, we laid the ground work for the entire system. That included the core functions, and the AJAX handler, which receives + handles the AJAX requests (deja vu?). We also made the login page, which also handles registration and logging out. In part 2, we're going to create the user's main page, the private messaging system, and the settings manager, where uses can change there name, E-mail, and password. When a user sucessfully logs in, they are redirected to index.p

| Hits: | 135 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-09 |
Member Managment System Using AJAX Part
One of the most common request of people learning PHP is that they want to make a member system thing. That's what we're going to do, only cooler. I'm going to try and teach you some basic concepts of JavaScript and PHP so that you can take this code and make it a hundred times better by adding new features. The tutorial isn't meant to be pretty, except for the JavaScript effects. I don't use much color, and it's standard yucky formatting. It's your job to make it look nice. The tutorial w

| Hits: | 122 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-09 |
PHP4ALL Members System - FULL Members System Tutorial
I made it to help the people who starts programming, or are lazy to program one from 0 :P, have their own members system. Features: - Register - Login - Logout - View Members - User CP - Edit Profile - Edit Avatar.

| Hits: | 168 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-09 |
Verifying email address
When users sign up to join your website you may want to verify their email address by sending confirmation link to their email address. You'll learn how to do this in this tutorial. In this tutorial create 4 files 2 databases 1. signup.php 2. signup_ac.php 3. confirmation.php 4. config.php We have to create 2 databases 1. temp_members_db 2. registered_members What to do 1. When users sign up. Random a set of confirmation code. 2. Keep their informations and confirmation code

| Hits: | 92 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-09 |
Sending forgotten password
This php tutorial shows you how to send password to members via e-mail address when they forgot their password. Mark Jackson is one of our member but he forgot his password for login to our website. We'll send him password to his e-mail address. In this tutorial create 2 file and 1 database 1. forgot_password.php 2. send_password_ac.php Database 1. members

| Hits: | 145 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-09 |
Multiple User Logon Script
If you want to make a login function on your website, you must first decide how you want to use it. There are many different ways to make a login script and I am going to show you just one of the methods using PHP. You can of course use a database to hold the username and password information, however I do not have access to one and for those of you who also don't and do not wish to pay for professional database hosting, this tutorial may provide the answer.

| Hits: | 64 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-09 |
Huge Registration Script Tutorial - Create a member registration script for your
First off we need to create our database in which our users will get registered into. You can do this via your cpanel. For the sake of this tutorial I am going to create a database named registration with a username of seanm and a password of codingforums. So just to refresh.

| Hits: | 96 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-09 |
Full PM System - Create a full Private Messaging System with PHP and MySQL
Private Messaging Tutorial Scripted by: Log2 Ok, I'm assuming you have MySQL, and this tutorial will work with Scotts login system tutorial, so the user variable that I will be using will be: $_SESSION['s_username']; But I will only use it once, for easier access to changing the user variable... if you didn't understand any of that, I suggest taking a different tutorial! First is the explanation, you need four very important fields: id, whoto, whofrom, and the message, those are the primary key,

| Hits: | 102 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-09 |
Staff Management System with profiles and admin panel
Alright, in this tutorial I'm going to teach you how to make your own staff management system! If you are new to PHP, I recommend reading some begginner PHP tutorials before attempting this one.

| Hits: | 45 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-09 |
Developing a Login System with PHP and MySQL
Most interactive websites nowadays would require a user to log in into the website’s system in order to provide a customized experience for the user. Once the user has logged in, the website will be able to provide a presentation that is tailored to the user’s preferences. A basic login system typically contains 3 components: 1. The component that allows a user to register his preferred login id and password 2. The component that allows the system to verify and authenticate the user w

| Hits: | 78 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-09 |
User System Part 4 - Create an admin panel for your user system!
Part 4 of the user system is here! This part is smaller than 1 and 3, but is an important addition. This allows you to create an admin control panel. First of all, you need to have done part 1. Parts 2 and 3 are not required. Information This system has 2 user levels, but it is easy to add new ones. The levels are: 1 -- This is for members. 5 -- This is for administrators. You can use levels 2-4 for moderators, tutorial staff--whatever you want. Step 1 We need to add a new field to

| Hits: | 62 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-09 |
Create MySQL Table and Insert Values
In this tutorial we'll see how to insert some values into a database after performing all the needed checks and security changes. You can find the previous part of this tutorial HERE (to check the correctness of the values and eventually redirect users to custom error pages) and the other previous part HERE (to create the form we use for this whole tutorial). Now we'll create the database table that will keep our users' data: open your phpmyadmin and run the following script into the SQL w

| Hits: | 97 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-09 |
Processing and Validating Form Fields with PHP
In this tutorial we'll see how to validate several different form fields, and if the verification fails, how to redirect users to custom error pages. This code must be put into a file named "livereg.php" to work with the form we have just created. To see the previous part of this tutorial (to create the HTML form used to send the values.

| Hits: | 126 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-09 |
Redirecting Users - Re-direct users back to the referer address after logging in
This tutorial will only cover redirecting. Assuming you already have a login script functioning, read on. An example of how this code will function on your site. - User logs in from /stats/index.php - User gets sent to login.php (or whatever file your login script is on) to be validated.

| Hits: | 17 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-09 |
Making a "Forgot your Password?" Script - Select a users info and email it to th
In this tutorial I will show you how you can make a "Forgot your Password?" for your users, where the user will supply there email address and we will search the database for that email address and then retrieve their password from the row of the user's email address and email it to the supplied email address. This will be working off of the tutorial PHP/MySQL Login System. If you are working off an existing membership system that wasn't created with that tutorial then keep this in mind, you wil

| Hits: | 55 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-09 |
User Login A very easy way to register users and members area
User Login designed by JLucas Designs & StarGame Production Studios and is a simple way to register, log users, and protect areas of your website that only members can go on. It uses MySQL and PHP to record information. It is great for all different size wesbites. If you need extras added I will be more than happy to work on it. To download go to the attachment link on this post. - Free Registration .

| Hits: | 21 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-09 |
PHP and MySQL Memberlist - Make a simple PHP memberlist
This tutorial will explain the basics of creating a PHP memberlist, I will use the same table names and column names as I used in my PHP Login System tutorial. So you can change them to custom your site. 1. First you should already have a table set up with users and their information. You can read a tutorial on how to make a something similar to this here. 2. If we already have a table setup or if we made one using the tutorial then we can continue. This script is basically 75% figuring ou

| Hits: | 80 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-09 |
Make a CMS from Scratch - Integrated with a Membership system!
In this tutuorial I will show you how you can make your own basic but easy to update CMS. It will include making navigation, site stats, login system, news and whatever you want as extra on the side (such as a shoutbox or an affiliate rotator). First we will be making the .inc (include files) which will be used on pretty much every page, I am making them in .inc files so you don't have to go through 30 long pages of code just to change a spelling error! 1. Since this is a PHP tutorial, I'm no

| Hits: | 131 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-09 |