https://github.com/single9/php-account-activation-by-uri
Using URI to activate account for member registration.
https://github.com/single9/php-account-activation-by-uri
Last synced: 3 months ago
JSON representation
Using URI to activate account for member registration.
- Host: GitHub
- URL: https://github.com/single9/php-account-activation-by-uri
- Owner: single9
- Created: 2013-08-10T19:31:17.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2013-08-11T07:33:34.000Z (almost 12 years ago)
- Last Synced: 2025-01-11T14:45:11.768Z (4 months ago)
- Language: PHP
- Homepage:
- Size: 117 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# PHP Account Activation By URI
## Description
Using URI to activate account for member registration.
## Installation
Download and edit `config.php`.
Edit email content in `register.php`
Copy files to your application.
Run this SQL or create one on your Database schema:
CREATE TABLE IF NOT EXISTS `users` (
`ID` int(11) NOT NULL AUTO_INCREMENT,
`username` varchar(30) NOT NULL,
`password` varchar(50) NOT NULL,
`activate_status` varchar(100) NOT NULL,
PRIMARY KEY (`ID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;Change it into what you want.
Have fun with this. :)
## Files
activator.php Activation account script
config.php Configuration file
class/class.MySQL.php MySQL class
index.php A registration form example
register.php Registration script### About class.MySQL.php
You can go [here](https://github.com/a1phanumeric/PHP-MySQL-Class) to get more information.
p.s. I increase password sercuity when update or insert it to database (on line 158 and 262).
## License
Exclusive MySQL class. This script has no license and free to use.