NamePros
Welcome, Guest! Ready to make a name for yourself in the domain business? We welcome both the hobbyist and professional domainer to join the discussion as part of the NamePros community.

Click here to create your profile to start earning reputation for posting, and trader ratings for buying & selling in our free e-marketplace. Build your trader rating with each successful sale. Our system has tracked over 100,000 sales and counting!
FAQ & TOS Register Search Today's Posts Mark Forums Read

Go Back   NamePros.com > Website Development Discussion Forums > Programming > CODE
Reload this Page FullyFunctional Member System: Login/Logout, Admin Panel, Sessions, Self-Installation

CODE This forum is for posting code snippets and example scripts that aren't quite tutorials, but could be useful for others. You may post code snippets and/or completed scripts that you've written and want to share here.

Advanced Search


Closed Thread
 
LinkBack Thread Tools
Old 08-08-2005, 12:56 PM THREAD STARTER               #1 (permalink)
DNOA Member
Join Date: May 2004
Posts: 5,040
mholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant future
 


Autism Marrow Donor Program 9/11/01 :: Never Forget Multiple Sclerosis Adoption Alzheimer's Lou Gehrig's Disease (ALS)

Thumbs up FullyFunctional Member System: Login/Logout, Admin Panel, Sessions, Self-Installation


OVERVIEW

This is a fully-functional, self-installing members management system, now version 1.1.2. Translated, that means:

This is the major build #1, minor build #1, and 1 larger bux fix (so I just add 2 lol) (1.1.2)

FEATURES
Mostly Self-Installing, Login, Logout, Register, Simple Admin Panel, Mostly Commented Code, and Instructions.

Use it - customize it! Build onto it. Learn from it! But first, download and unzip it!

FUNCTIONAL SAMPLE

Click This Link To Try It!
**** SAMPLE DOWN **** My server is new and I have been too lazy to move it over yet.

To see what it's like, go ahead: Register and login. Play with it a bit. The sample provides an admin panel view (with disabled functions though to prevent abuse).

The other version is the same, but is shown and works exactly as the download would when installed properly. Admin panel is visible only to admins, etc, etc.

** CAUTION: I do not have the time to censor any data in this sample, so the admin panel displaying the usernames may contain vulgar data. If it does, please PM me and I will remove that user.

This uses PHP sessions. It's VERY easy to customize, since it's so simple to start off with and learn from.

USAGE RECOMMENDATIONS

*** SECURITY WARNING ***

THIS IS NOT A SECURE SCRIPT! It is a simple task to crack into it and present unwanted results such as data loss, corruption, or disfacement of site. Access to database is also a concern here. I am not to be blamed or held responsible for any security faults or data losses/unauthorized accesses. DOWNLOAD, INSTALL, AND USE AT YOUR OWN RISK.

Recommended Security Additions
  • SQL Injection Detection - Prevent an injection via forms (PHP function: mysql_real_escape_string() is a common way of preventing injection)
  • Create all variables from $_POST after a form submission so you won't use unwanted ones via the URL bar
  • Create a more complex user login system (email validation is encouraged)
  • Store more than the username in a session variable to track logins
  • Check each login on every page load with the database and validate the data
  • Create a logging system that will inform you of any bugs or security flaws
  • Make the admin user detection in admincheck.php better, similar to user login detection

????: NamePros.com http://www.namepros.com/code/113786-fullyfunctional-member-system-login-logout-admin.html
You can add on almost ANYTHING to this, but I HIGHLY recommend you improve it yourself! Learn from it and make a cool web app!

For those of who think this is junk, I agree. It is - if you just leave it as I have written it. The general idea behind my doing this is so people can learn from a practical project and build upon it themselves.

Bugs/Comments/Suggestions accepted via PM or reply. (No nasty ones, please.)

SCRIPT UPDATES & BUG FIXES

August 2005 - Ver. 1.0.1
A bug in the registration script (my bad!) that didn't insert the new user into the database. To fix this problem, re-download the zip file and replace register.php with the new one.
Don't want to redownload? Just change line 95 of register.php to:
PHP Code:
$q "INSERT INTO users VALUES(NULL, '$name', '$uname', '$pwd', '$date', '0', '$profile', 'normal', '$age')"
And you're done!

----------------------------

August 2005 - Ver. 1.1
I've decided to add a basic security feature to the script, since many new PHP'ers won't figure it out for quite a while I'm guessing.

The config.php file has a security vulnerability (sp?) that could easily reveal your database name, username, and password. This is now fixed and I highly advise you re-download the zip file and edit these files:
  • config.php - Put this code into your current config.php file:
    ????: NamePros.com http://www.namepros.com/showthread.php?t=113786
    PHP Code:
    <?php
    $dbname 
    ""//Database name.
    $dbuser ""//Database user name
    $dbpwd ""//Database user password.
    ?>
    Then, fill in the values for these 3 variables. After this, delete the old content (should be 1 line) so that your config.php file consists ONLY of this new content.
  • dbconn.php - Just replace the old one with the one in the zip file and it should work okay if you edited config.php right.

----------------------------

August 2005, ver. 1.1.2
There was an error in admin_edit.php. It said you were not an admin when you really were, so either re-download and replace "admin_edit.php" with this new one, or just do the following:

Put this code on the second line of "admin_edit.php":
PHP Code:
include("dbconn.php"); 
Done!




Enjoy!

-Matt

INSTALLATION
  1. Download the below .zip file to a temporary location.
  2. Extract to a more permanent location, (E.g. C:\wwwroot\MemberSystem) and you may then delete the .zip file.
  3. Refer the README file for more easy installation instructions.
Attached Files
File Type: zip members.zip (11.3 KB, 71 views)
Last edited by compuXP; 09-21-2005 at 03:45 PM. Reason: Interface enhancement and script update.
mholt is offline  
Old 08-08-2005, 01:46 PM   #2 (permalink)
Senior Member
 
Eric's Avatar
Join Date: Mar 2005
Posts: 4,948
Eric Has achieved greatnessEric Has achieved greatnessEric Has achieved greatnessEric Has achieved greatnessEric Has achieved greatnessEric Has achieved greatnessEric Has achieved greatnessEric Has achieved greatnessEric Has achieved greatnessEric Has achieved greatnessEric Has achieved greatness
 

Member of the Month
MOTM September 2005
Save a Life Child Abuse 9/11/01 :: Never Forget Baby Health Marrow Donor Program AIDS/HIV Breast Cancer Animal Rescue Cystic Fibrosis Ethan Allen Fund Animal Cruelty Ethan Allen Fund Ethan Allen Fund Baby Health Cancer Alzheimer's Protect Our Planet Cancer Survivorship SIDS Child Abuse Diabetes Protect Our Planet Multiple Sclerosis Autism Adoption Special Olympics
Nice, I'll download er. Hehe, build on er a little Thanks.


-Eric
Eric is offline  
Old 08-08-2005, 01:51 PM   #3 (permalink)
Senior Member
 
Porte's Avatar
Join Date: May 2005
Location: I'm right here
Posts: 3,526
Porte has much to be proud ofPorte has much to be proud ofPorte has much to be proud ofPorte has much to be proud ofPorte has much to be proud ofPorte has much to be proud ofPorte has much to be proud ofPorte has much to be proud ofPorte has much to be proud of
 



Let me see the structure of this..

Just read through it..nice, i like the coding style..not complicated and easy.
__________________
WP Theme Developer
Your One-stop for Premium Magazine/CMS WordPress Themes
Deluxe Themes
Porte is offline  
Old 08-08-2005, 02:00 PM THREAD STARTER               #4 (permalink)
DNOA Member
Join Date: May 2004
Posts: 5,040
mholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant future
 


Autism Marrow Donor Program 9/11/01 :: Never Forget Multiple Sclerosis Adoption Alzheimer's Lou Gehrig's Disease (ALS)
Thanks!

I didn't modulate very much, using an fns.inc file, since this isn't a large-scale project. My goal with this is to get beginners in this field started and learn how to do their work with a practicle foundation.
mholt is offline  
Old 08-08-2005, 11:51 PM   #5 (permalink)
NamePros Member
Join Date: Jan 2005
Location: Texas USA
Posts: 71
Outer is an unknown quantity at this point
 



Mind if I make certain additions to it and add it here matt?

A simplified version and one with some of the additions you stated and etc.?
__________________
I wonder...
Outer is offline  
Old 08-09-2005, 02:43 AM   #6 (permalink)
.PJ
NamePros Regular
 
.PJ's Avatar
Join Date: Aug 2004
Posts: 363
.PJ is on a distinguished road
 



I might look at this later tonight.

Good work

PJ
__________________
L33TSig.net
.PJ is offline  
Old 08-09-2005, 05:49 AM THREAD STARTER               #7 (permalink)
DNOA Member
Join Date: May 2004
Posts: 5,040
mholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant future
 


Autism Marrow Donor Program 9/11/01 :: Never Forget Multiple Sclerosis Adoption Alzheimer's Lou Gehrig's Disease (ALS)
Outer - Actually I was hoping that new programmers would find it a useful and helpful foundation to start programming with. Adding features for them wouldn't teach them much of anything, would it?
mholt is offline  
Old 08-09-2005, 08:51 AM   #8 (permalink)
Eating Pie
 
iNod's Avatar
Join Date: Nov 2004
Location: Canada
Posts: 2,272
iNod has much to be proud ofiNod has much to be proud ofiNod has much to be proud ofiNod has much to be proud ofiNod has much to be proud ofiNod has much to be proud ofiNod has much to be proud ofiNod has much to be proud ofiNod has much to be proud ofiNod has much to be proud of
 


Special Olympics AIDS/HIV Cystic Fibrosis Save The Children Baby Health Cystic Fibrosis
Actually adding features to other scripts is how I learn php.

Some features which could be added are.

How many users there are stats (simple mysql_num_row code addtion)
Forget Password (Another file.. Not so simple)
Activation required email (Simple email and updating mysql db, New row)

There are many more functions which can be added.

Regards,
__________________
I feel old.
iNod is offline  
Old 08-09-2005, 09:04 AM THREAD STARTER               #9 (permalink)
DNOA Member
Join Date: May 2004
Posts: 5,040
mholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant future
 


Autism Marrow Donor Program 9/11/01 :: Never Forget Multiple Sclerosis Adoption Alzheimer's Lou Gehrig's Disease (ALS)

First, there already IS a number of users stats in the admin panel.
Second, I don't care WHAT you add to your copy just as long as you don't redistribute it, as that's against copyright law.
mholt is offline  
Old 08-09-2005, 11:47 PM   #10 (permalink)
Senior Member
 
Muneeb2Good's Avatar
Join Date: Jun 2005
Location: Planet Mars
Posts: 1,400
Muneeb2Good is a name known to allMuneeb2Good is a name known to allMuneeb2Good is a name known to allMuneeb2Good is a name known to allMuneeb2Good is a name known to allMuneeb2Good is a name known to allMuneeb2Good is a name known to allMuneeb2Good is a name known to all
 




Hurra ! Thanks Bro this is AWESOME i just want to say Thank you For Sharing with Us !
So nice of you !
Muneeb2Good is offline  
Old 08-10-2005, 01:34 PM THREAD STARTER               #11 (permalink)
DNOA Member
Join Date: May 2004
Posts: 5,040
mholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant future
 


Autism Marrow Donor Program 9/11/01 :: Never Forget Multiple Sclerosis Adoption Alzheimer's Lou Gehrig's Disease (ALS)
^_^ You're welcome. It was fun to write. Again, if you notice any bugs, please inform me so I can fix it
mholt is offline  
Old 08-10-2005, 05:50 PM   #12 (permalink)
Senior Member
 
Muneeb2Good's Avatar
Join Date: Jun 2005
Location: Planet Mars
Posts: 1,400
Muneeb2Good is a name known to allMuneeb2Good is a name known to allMuneeb2Good is a name known to allMuneeb2Good is a name known to allMuneeb2Good is a name known to allMuneeb2Good is a name known to allMuneeb2Good is a name known to allMuneeb2Good is a name known to all
 




Originally Posted by compuXP
^_^ You're welcome. It was fun to write. Again, if you notice any bugs, please inform me so I can fix it
Yes sure why not !
Muneeb2Good is offline  
Old 08-14-2005, 02:19 PM THREAD STARTER               #13 (permalink)
DNOA Member
Join Date: May 2004
Posts: 5,040
mholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant future
 


Autism Marrow Donor Program 9/11/01 :: Never Forget Multiple Sclerosis Adoption Alzheimer's Lou Gehrig's Disease (ALS)
...anybody else like it? -_-
mholt is offline  
Old 08-18-2005, 01:07 PM   #14 (permalink)
NamePros Regular
 
Zubair1's Avatar
Join Date: Mar 2005
Posts: 912
Zubair1 is just really niceZubair1 is just really niceZubair1 is just really niceZubair1 is just really niceZubair1 is just really nice
 


AIDS/HIV
hey thanks, its really nice but i think if you'd make it support to put all the sessions in the database, it'd be more secure i know you didn't had any intentions of securing this script, which you clearly explained above, but i think if you do that it'd be much better

Well, i was working on making some thing like that though i got stuck on a part,
which was detecting sessions when there browsers got closed this is the most painful
part for me in the script, every thing is cleared out but just stuck on this part
if any one has some solutions for this please do tell me,

you script is still nice for a basic page though

i dont know why but when i am trying to register with this script
its giving me this error,

ERROR > Could not insert into database. Error returned is Column count doesn't match value count at row 1
__________________
Live Support : Zubair11 [at] hotmail.com
Free SEO Directory! || Free Online TV || Tech Blog
Web Design & Web Development Services || Reliable Web Hosting
Zubair1 is offline  
Old 08-18-2005, 01:13 PM   #15 (permalink)
NamePros Regular
 
unknownz's Avatar
Join Date: Aug 2005
Posts: 727
unknownz is just really niceunknownz is just really niceunknownz is just really niceunknownz is just really niceunknownz is just really niceunknownz is just really niceunknownz is just really niceunknownz is just really nice
 



Thanks alot. I dont need it currently, but would definitely look forward to it for next version of my website.
very well done.
__________________
:laugh:...::::Pakisp.net::::...-The Entertainment Pack Pakisp.net :wave:
Free Web Directory
unknownz is offline  
Old 08-18-2005, 04:06 PM THREAD STARTER               #16 (permalink)
DNOA Member
Join Date: May 2004
Posts: 5,040
mholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant future
 


Autism Marrow Donor Program 9/11/01 :: Never Forget Multiple Sclerosis Adoption Alzheimer's Lou Gehrig's Disease (ALS)
Zubair1 - Hmm... that may be the reason nobody has registered O.o ... but it worked for me... gosh thanks for reporting. That probably hurt my script's reputation. Fixed.

I've also updated the download file. Version 1.0.1 now released lol.

EDIT: Zubair1, this was taken from PHP.net:
PHP Code:
The following code is a nice simple way to check for cookie support without needing any intermediary pages to check it has been set.
????: NamePros.com http://www.namepros.com/showthread.php?t=113786

// Set the name of the cookie (nicer than default name)
session_name("SID");

// Set cookie to expire way into the future so it persists
session_set_cookie_params (60*60*24*365*10'/''.mydomain.com',0);

session_start();
if ( 
SID != "" ) {
   
header("Location: /nocookie.php");
   exit();

You could alter things a bit... that session cookie expires in 10 years
Last edited by compuXP; 08-18-2005 at 04:16 PM.
mholt is offline  
Old 08-18-2005, 05:29 PM   #17 (permalink)
NamePros Regular
 
Zubair1's Avatar
Join Date: Mar 2005
Posts: 912
Zubair1 is just really niceZubair1 is just really niceZubair1 is just really niceZubair1 is just really niceZubair1 is just really nice
 


AIDS/HIV
lol, nps man but i think every one above didn't check weather it was fully functional
well nice job its working fine now the php snippet which you took from php.net
do we have to put this on every page of our script to detect weather cookies were set or not, and though the sessions are still not secure that way it'd be better if they were put on database, may i ask you a question?
Q-) Do you know how i can know when a user closes their browser
as i am having a lot of trouble with and also researched on it alot too, though i still didn't get any good results, what i am wanting to do is put the sessions data on the database i check for and retrieve all the session information from the database
????: NamePros.com http://www.namepros.com/showthread.php?t=113786
like when a person clicks the logout link, they logout their sessions are ended, (destroyed) but what if the user never logs out, they're sessions are lost some where in the database, so i want to know when that happens (I.E When the user closes their browser), so i can tell the database to delete all the session information about that person, (got any solutiions for this bro)?

thanks in advance :d
__________________
Live Support : Zubair11 [at] hotmail.com
Free SEO Directory! || Free Online TV || Tech Blog
Web Design & Web Development Services || Reliable Web Hosting
Zubair1 is offline  
Old 08-18-2005, 05:51 PM THREAD STARTER               #18 (permalink)
DNOA Member
Join Date: May 2004
Posts: 5,040
mholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant future
 


Autism Marrow Donor Program 9/11/01 :: Never Forget Multiple Sclerosis Adoption Alzheimer's Lou Gehrig's Disease (ALS)
I'm sorry, I don't know... I'm not familliar with that type of sessions usage (with sessions + cookies), and I've wondered myself how to know whether a user is online or not.

Although... http://www.cj-design.com - they have a VERY simple users online script for free download, which tells you the NUMBER of people online. You might play with that a bit.

Cheers,
-Matt
mholt is offline  
Old 08-19-2005, 01:20 AM   #19 (permalink)
Senior Member
 
bbalegere's Avatar
Join Date: Jul 2005
Location: Bangalore
Posts: 1,271
bbalegere is just really nicebbalegere is just really nicebbalegere is just really nicebbalegere is just really nicebbalegere is just really nice
 



Thankx.This is good.
bbalegere is offline  
Old 08-21-2005, 01:22 PM THREAD STARTER               #20 (permalink)
DNOA Member
Join Date: May 2004
Posts: 5,040
mholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant future
 


Autism Marrow Donor Program 9/11/01 :: Never Forget Multiple Sclerosis Adoption Alzheimer's Lou Gehrig's Disease (ALS)
Great Enjoy.
mholt is offline  
Old 08-29-2005, 11:02 AM   #21 (permalink)
NamePros Regular
Join Date: Aug 2005
Location: Leeds, UK
Posts: 263
noswad is an unknown quantity at this point
 



This looks good but when I hit install I get...

Could not connect to database. Either the DB doesn't exist, or the username/pwd combo supplied was invalid.

Do I have to make my own MySQL database cos I dont have a clue how to do this lol
__________________
Michael McIntyre - Fan site for the super funny UK comedian Michael McIntyre
noswad is offline  
Old 08-29-2005, 11:07 AM   #22 (permalink)
Senior Member
 
Eric's Avatar
Join Date: Mar 2005
Posts: 4,948
Eric Has achieved greatnessEric Has achieved greatnessEric Has achieved greatnessEric Has achieved greatnessEric Has achieved greatnessEric Has achieved greatnessEric Has achieved greatnessEric Has achieved greatnessEric Has achieved greatnessEric Has achieved greatnessEric Has achieved greatness
 

Member of the Month
MOTM September 2005
Save a Life Child Abuse 9/11/01 :: Never Forget Baby Health Marrow Donor Program AIDS/HIV Breast Cancer Animal Rescue Cystic Fibrosis Ethan Allen Fund Animal Cruelty Ethan Allen Fund Ethan Allen Fund Baby Health Cancer Alzheimer's Protect Our Planet Cancer Survivorship SIDS Child Abuse Diabetes Protect Our Planet Multiple Sclerosis Autism Adoption Special Olympics
Originally Posted by noswad
This looks good but when I hit install I get...

Could not connect to database. Either the DB doesn't exist, or the username/pwd combo supplied was invalid.
????: NamePros.com http://www.namepros.com/showthread.php?t=113786

Do I have to make my own MySQL database cos I dont have a clue how to do this lol
Lol. Yes, yes you do. Do you have cpanel with your hosting account? if so, it is quite easy..
Eric is offline  
Old 08-29-2005, 12:10 PM   #23 (permalink)
NamePros Regular
Join Date: Aug 2005
Location: Leeds, UK
Posts: 263
noswad is an unknown quantity at this point
 



Yeah I have cpanel

Any hints tips before I give it a go?
__________________
Michael McIntyre - Fan site for the super funny UK comedian Michael McIntyre
noswad is offline  
Old 08-29-2005, 12:12 PM   #24 (permalink)
Senior Member
 
Eric's Avatar
Join Date: Mar 2005
Posts: 4,948
Eric Has achieved greatnessEric Has achieved greatnessEric Has achieved greatnessEric Has achieved greatnessEric Has achieved greatnessEric Has achieved greatnessEric Has achieved greatnessEric Has achieved greatnessEric Has achieved greatnessEric Has achieved greatnessEric Has achieved greatness
 

Member of the Month
MOTM September 2005
Save a Life Child Abuse 9/11/01 :: Never Forget Baby Health Marrow Donor Program AIDS/HIV Breast Cancer Animal Rescue Cystic Fibrosis Ethan Allen Fund Animal Cruelty Ethan Allen Fund Ethan Allen Fund Baby Health Cancer Alzheimer's Protect Our Planet Cancer Survivorship SIDS Child Abuse Diabetes Protect Our Planet Multiple Sclerosis Autism Adoption Special Olympics
Originally Posted by noswad
Yeah I have cpanel

Any hints tips before I give it a go?
Login to Cpanel>Go to MySQL Databases>Add Db>Create User>Add User to DB
????: NamePros.com http://www.namepros.com/showthread.php?t=113786

Then, just enter that info when asked to install the login script and you're good to go.
Eric is offline  
Old 08-29-2005, 01:16 PM   #25 (permalink)
NamePros Regular
Join Date: Aug 2005
Location: Leeds, UK
Posts: 263
noswad is an unknown quantity at this point
 



I just keep getting.....

Could not connect to database. Either the DB doesn't exist, or the username/pwd combo supplied was invalid. Back

I dont know what I have done wrong!
__________________
Michael McIntyre - Fan site for the super funny UK comedian Michael McIntyre
Last edited by noswad; 08-29-2005 at 02:45 PM.
noswad is offline  
Closed Thread


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools


Similar Threads
Thread Thread Starter Forum Replies Last Post
May Script Installation Special--Chance for free webhosting iidavidii Scripts For Sale 0 05-04-2004 01:44 PM
PPC scripts for sale morpheus666 Scripts For Sale 1 03-20-2004 12:15 PM
2 PPC sites with design morpheus666 Web Development Wanted 1 02-28-2004 05:40 AM
2 PPC scripts for sale morpheus666 Scripts For Sale 2 02-28-2004 05:39 AM

Liquid Web Smart Servers  
All times are GMT -7. The time now is 11:30 AM.

Managed Web Hosting by Liquid Web
Domain name forum recommended by Domaining.com Powered by: vBulletin® Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.6.0 Ad Management plugin by RedTyger