[DEV] Game Site CMS [/DEV]

Status
Not open for further replies.

langer6

Member
Dec 2, 2010
43
3
I have decided to create a development thread on this as I now have my sights out to complete it. Anyhow here we go.
What is it?
This project is a basic game websites cms to play flash based games on. which will be coded in PHP/OOP(OOP not so well)
Features
User Comments On Games (Admin Ban Users commenting)
User System
Games (Not Created by me)
Housekeeping (Maybe)

Got any more features you would like adding please comment. I would love user suggestions.

The point of this project is not to get used, But to be an aid to me in developing me web language knowledge further.
Please do not flame as this is my first OOP project. It will probably fail. But i will keep trying.

Securing user inputs in the user class:
Code:
	function secureString($string){
		return htmlentities($this->mysqlFixString($string));
	}
	
	function mysqlFixString($string){
		if (get_magic_quotes_gpc()) {
			$string = stripslashes($string);
		}
		return mysql_real_escape_string($string);
	}
 

Supersup

Member
Dec 23, 2010
43
5
Good luck, btw a development is never going to be a success if the developer don't have confidence.
 

langer6

Member
Dec 2, 2010
43
3
Thanks for boost. And the reason I put myself down about it is because every project I have started so far, I have give up on after a day or two. This one has been running slightly longer. I am determined to finish it but have never seen an end result from myself. So i do not know how it will turn out.

Okay, Slight Development.
Login: 100% -- OOP
Register: 100% -- OOP
Forgot Password: 100% OOP
Not much design work done.

Have not even started to figure out a way to implement the games in a CMS style manner.
 

brsy

nah mang
May 12, 2011
1,530
272
Any updates or news regarding project? Or has it been discontinued.
 

Gajeel

Well-Known Member
Oct 4, 2011
2,411
413
Thanks for boost. And the reason I put myself down about it is because every project I have started so far, I have give up on after a day or two. This one has been running slightly longer. I am determined to finish it but have never seen an end result from myself. So i do not know how it will turn out.

Okay, Slight Development.
Login: 100% -- OOP
Register: 100% -- OOP
Forgot Password: 100% OOP
Not much design work done.

Have not even started to figure out a way to implement the games in a CMS style manner.
You may try manually embedding some games from another site or steal them & you host it. Either way, goodluck. Hope it wasn't discontinued.
 
Status
Not open for further replies.

Users who are viewing this thread

Top