TalkPHP
 
 
Account Login
Latest Articles
» The basic usage of PHPTAL, a XML/XHTML template library for PHP
» Vulnerable methods and the areas they are commonly trusted in.
» Simple way to protect a form from bot
» The Basics On: How Session Stealing Works
» How to keep your forms from double posting data
IRC Channel
IRC Speech Bubble Join the friendly bunch on IRC...
(#TalkPHP on Freenode)

...Also available via a web interface.

See this thread for information on the TalkPHP Free Hugs Initiative™. Subject to availability.
Associates
Associates
CSS Tutorials
Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old 04-18-2008, 01:57 AM   #1 (permalink)
The Addict
 
zxt3st's Avatar
 
Join Date: Apr 2008
Posts: 200
Thanks: 18
zxt3st is on a distinguished road
Bug 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?
zxt3st is offline  
Reply With Quote
Old 04-18-2008, 01:58 AM   #2 (permalink)
Orc
The Prestige
 
Orc's Avatar
 
Join Date: Dec 2007
Posts: 1,044
Thanks: 193
Orc is on a distinguished road
Default

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.
__________________
VillageIdiot can have my babbies ;d
Orc is offline  
Reply With Quote
Old 04-18-2008, 02:35 AM   #3 (permalink)
The Addict
 
zxt3st's Avatar
 
Join Date: Apr 2008
Posts: 200
Thanks: 18
zxt3st is on a distinguished road
Default

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
zxt3st is offline  
Reply With Quote
Old 04-18-2008, 02:36 AM   #4 (permalink)
Orc
The Prestige
 
Orc's Avatar
 
Join Date: Dec 2007
Posts: 1,044
Thanks: 193
Orc is on a distinguished road
Default

Quote:
Originally Posted by t3st View Post
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
__________________
VillageIdiot can have my babbies ;d
Orc is offline  
Reply With Quote
Old 04-18-2008, 03:00 AM   #5 (permalink)
The Addict
 
zxt3st's Avatar
 
Join Date: Apr 2008
Posts: 200
Thanks: 18
zxt3st is on a distinguished road
Default

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?
zxt3st is offline  
Reply With Quote
Old 04-18-2008, 01:19 PM   #6 (permalink)
Orc
The Prestige
 
Orc's Avatar
 
Join Date: Dec 2007
Posts: 1,044
Thanks: 193
Orc is on a distinguished road
Default

Quote:
Originally Posted by t3st View Post
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.
__________________
VillageIdiot can have my babbies ;d
Orc is offline  
Reply With Quote
Old 04-18-2008, 01:38 PM   #7 (permalink)
Wizard
Top Contributor 
 
Village Idiot's Avatar
 
Join Date: Sep 2007
Posts: 1,299
Thanks: 17
Village Idiot is on a distinguished road
Default

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

Village Idiot is offline  
Reply With Quote
Old 04-18-2008, 01:45 PM   #8 (permalink)
Orc
The Prestige
 
Orc's Avatar
 
Join Date: Dec 2007
Posts: 1,044
Thanks: 193
Orc is on a distinguished road
Default

Quote:
Originally Posted by Village Idiot View Post
Out of interest, do you use any punctuation besides "..."? And who taught you how to spell?
Wait, what?
__________________
VillageIdiot can have my babbies ;d
Orc is offline  
Reply With Quote
Old 04-18-2008, 01:52 PM   #9 (permalink)
Wizard
Top Contributor 
 
Village Idiot's Avatar
 
Join Date: Sep 2007
Posts: 1,299
Thanks: 17
Village Idiot is on a distinguished road
Default

Quote:
Originally Posted by Orc View Post
Wait, what?
Not directed to you, post edited.
__________________

Village Idiot is offline  
Reply With Quote
Old 04-19-2008, 02:04 AM   #10 (permalink)
The Addict
 
zxt3st's Avatar
 
Join Date: Apr 2008
Posts: 200
Thanks: 18
zxt3st is on a distinguished road
Default

Quote:
Originally Posted by Village Idiot View Post
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..
zxt3st is offline  
Reply With Quote
Old 04-19-2008, 09:23 AM   #11 (permalink)
The Visitor
 
Join Date: Mar 2008
Location: Aberdeen, Scotland
Posts: 3
Thanks: 0
BetaOrange is on a distinguished road
Default

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! :)
Send a message via MSN to BetaOrange
BetaOrange is offline  
Reply With Quote
Old 04-19-2008, 10:19 AM   #12 (permalink)
The Addict
 
zxt3st's Avatar
 
Join Date: Apr 2008
Posts: 200
Thanks: 18
zxt3st is on a distinguished road
Default

Quote:
Originally Posted by BetaOrange View Post
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.
zxt3st is offline  
Reply With Quote
Reply



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

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


All times are GMT. The time now is 04:40 AM.

 
     

Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.1.0
Inactive Reminders By Icora Web Design