TalkPHP

TalkPHP (http://www.talkphp.com/forums.php)
-   General (http://www.talkphp.com/general/)
-   -   What would be a nice project? (http://www.talkphp.com/general/2656-what-would-nice-project.html)

zxt3st 04-18-2008 01:57 AM

What would be a nice project?
 
im a beginner in php..and i just would like to ask some suggestions from you guyz..what would be a good project to deal with?

Orc 04-18-2008 01:58 AM

Make some simple stuff in PHP and Mysql? That's what I did first time around, then I got really interested in the cool functions, and now here I am. I don't remember exactly how long I've been doing PHP code, but I think around a year and a half or so.

Examples of PHP and MySQL systems:
news
blogs
forums
gallery
membership
point system / rating system


and many more.

Or you could do what I also did and practice every single function every day. At least 3 functions at a time, and made many examples with them.

In your position, I'd bet recommend starting with a simple news system.

zxt3st 04-18-2008 02:35 AM

hmm..it seems interesting..okay ill try..thanks for this..:D

maybe after i could make it..ill post in it a free web host..:D

Orc 04-18-2008 02:36 AM

Quote:

Originally Posted by t3st (Post 13582)
hmm..it seems interesting..okay ill try..thanks for this..:D

maybe after i could make it..ill post in it a free web host..:D

You could always just do a local host server for all your testing, and judging by your upload speed you could show us from there. ;P

zxt3st 04-18-2008 03:00 AM

one last question..what would be the fields for all of those..

like:

date
the news content
the title
uploaded by


hmm.wat do u think?

Orc 04-18-2008 01:19 PM

Quote:

Originally Posted by t3st (Post 13589)
one last question..what would be the fields for all of those..

like:

date
the news content
the title
uploaded by


hmm.wat do u think?

date should be stored as a timestamp so int(10), news content is endless so text, the title should be varchar(100) and uploaded by should be the fieldtype of the username in the members table or whatever.

Village Idiot 04-18-2008 01:38 PM

t3st, out of interest, do you use any punctuation besides "..."? And who taught you how to spell?

Orc 04-18-2008 01:45 PM

Quote:

Originally Posted by Village Idiot (Post 13604)
Out of interest, do you use any punctuation besides "..."? And who taught you how to spell?

Wait, what?

Village Idiot 04-18-2008 01:52 PM

Quote:

Originally Posted by Orc (Post 13605)
Wait, what?

Not directed to you, post edited.

zxt3st 04-19-2008 02:04 AM

Quote:

Originally Posted by Village Idiot (Post 13604)
t3st, out of interest, do you use any punctuation besides "..."? And who taught you how to spell?

shame on me sorry if i bring my habit in this forum to cut words...its because i am used to it..:lol: and i will not do it again...again sorry..


@orc

thanks i already have my database structure

Code:

$tbl_news = "CREATE TABLE news_post (
  id int(11) NOT NULL auto_increment,
  title varchar(70) NOT NULL,
  author varchar(50) NOT NULL,
  post TEXT NOT NULL,
  date DATETIME NOT NULL,
  PRIMARY KEY(id))TYPE=MyISAM";

@mysql_query($tbl_news, $link)or die("Failed to create table");;

thanks though..

BetaOrange 04-19-2008 09:23 AM

t3st, he's meaning that you're always using "..." instead of commas and fullstops(periods).

t3st, Good luck on your project and let us know how it goes! :)

zxt3st 04-19-2008 10:19 AM

Quote:

Originally Posted by BetaOrange (Post 13629)
t3st, he's meaning that you're always using "..." instead of commas and fullstops(periods).

t3st, Good luck on your project and let us know how it goes! :)

oh i get it. thanks!

for sure i will.


All times are GMT. The time now is 08:53 AM.

Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.1.0