RE: [PHP] Model Web Site

2008-11-21 Thread bruce
hi...

for what it's worth. the best approach might be to find a few sites that
have the functionality/layout you like. there are probably a few of them
that you'll run across that meet what you have in mind. use these as your
basic guides. add additional features that you'd like.

you now have (roughly speaking) the requirements/functions that you want
your final site to have. from here, you can figure out which scripts you
want to apply, and what you're still going to have to provide. keep in mind
that you can't simply throw scripts together, but you can use them to get a
sense of the underlying logic. you can also use them to see how to develop
your look/feel of your site.

looking at various scripts also gives you a chance to think about how you
want to implement your security/setup, as well as the underlying database
schema..

you can find plenty of apps/scripts on freshmeat.net/sourceforge.net as
well.

have fun!


-Original Message-
From: Stephen [mailto:[EMAIL PROTECTED]
Sent: Thursday, November 20, 2008 2:17 PM
To: PHP-General
Subject: [PHP] Model Web Site


My prime hobby is photography and the next is web site building.

So now I have a young model (18+) asking me about getting a web site.

The idea is members can see content, that will include, photos, her blog
and a discussion forum.

I like the idea of building it, but it includes a lot of things I have
no experience in.

Can someone point me to documentation/tutorials/scripts or anything that
might help.

I don't want a turnkey solution. I want to learn how to do this.

Thank you!
Stephen

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] Model Web Site

2008-11-20 Thread Boyd, Todd M.
 -Original Message-
 From: Stephen [mailto:[EMAIL PROTECTED]
 Sent: Thursday, November 20, 2008 4:17 PM
 To: PHP-General
 Subject: [PHP] Model Web Site
 
 My prime hobby is photography and the next is web site building.
 
 So now I have a young model (18+) asking me about getting a web site.
 
 The idea is members can see content, that will include, photos, her
 blog
 and a discussion forum.
 
 I like the idea of building it, but it includes a lot of things I have
 no experience in.
 
 Can someone point me to documentation/tutorials/scripts or anything
 that
 might help.
 
 I don't want a turnkey solution. I want to learn how to do this.

http://www.w3schools.com/html
http://www.w3schools.com/xhtml
http://www.w3schools.com/css
http://www.w3schools.com/js 
http://www.w3schools.com/php
http://www.w3schools.com/sql
http://www.php.net
http://www.mysql.com

most important link:

http://www.google.com

Get comfortable with programming; with algorithms; with data structures;
with databases; with client-server relationships.

HTH,


// Todd

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Model Web Site

2008-11-20 Thread Daniel P. Brown
On Thu, Nov 20, 2008 at 5:16 PM, Stephen [EMAIL PROTECTED] wrote:

 Can someone point me to documentation/tutorials/scripts or anything that
 might help.

Stephen,

The whole thing could be built pretty quickly using existing open
source systems such as phpBB3[1] and Gallery[2] as a core.  Then it's
a matter of putting up smaller additional scripts to link your other
things together.

1: http://www.phpbb.com/
2: http://www.nukedgallery.net/

Just some examples, of course.  There are literally thousands of
options, including building your own or hiring someone to do it.  You
should have no problem jumping right in.

-- 
/Daniel P. Brown
http://www.parasane.net/
[EMAIL PROTECTED] || [EMAIL PROTECTED]
1 LEFT: $149/mo. $0 Setup - Dual-Core/320GB HDD/1GB RAM/3TB
100Mbps/cPanel - SAME-DAY SETUP! Contact me to buy.

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Model Web Site

2008-11-20 Thread Stephen

Boyd, Todd M. wrote:

http://www.w3schools.com/html
http://www.w3schools.com/xhtml
http://www.w3schools.com/css
http://www.w3schools.com/js 
http://www.w3schools.com/php

http://www.w3schools.com/sql
http://www.php.net
http://www.mysql.com

most important link:

http://www.google.com

Get comfortable with programming; with algorithms; with data structures;
with databases; with client-server relationships.

HTH,
  

Thanks . but ... ouch!

I have been doing HTML sites for 5 years. CSS for four and PHP/MySQL for 
three.


What is new to me is controlling access based on being a member. And 
making it tough for hackers.


Stephen

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Model Web Site

2008-11-20 Thread Chris

Stephen wrote:

Boyd, Todd M. wrote:

http://www.w3schools.com/html
http://www.w3schools.com/xhtml
http://www.w3schools.com/css
http://www.w3schools.com/js http://www.w3schools.com/php
http://www.w3schools.com/sql
http://www.php.net
http://www.mysql.com

most important link:

http://www.google.com

Get comfortable with programming; with algorithms; with data structures;
with databases; with client-server relationships.

HTH,
  

Thanks . but ... ouch!

I have been doing HTML sites for 5 years. CSS for four and PHP/MySQL for 
three.


..none of which was originally mentioned.

What is new to me is controlling access based on being a member. And 
making it tough for hackers.


Look for a tutorial on building a login system and go from there.

--
Postgresql  php tutorials
http://www.designmagick.com/


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Model Web Site

2008-11-20 Thread Yeti
 What is new to me is controlling access based on being a member. And
 making it tough for hackers.

 Look for a tutorial on building a login system and go from there.

Since you mentioned security I would recommend HTTPS.
http://en.wikipedia.org/wiki/HTTPS

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Model Web Site

2008-11-20 Thread Craige Leeder
As Daniel mentioned, I would recomed building it upon an existing 
system. I've seen whole sites custom built around PHPBB.


This might be something you want to look into. Google for PHPBB 
programming tutorials; it's pretty well documented. I think it's your 
best bet if you don't want to spend forever building it from the ground-up.


PHPNuke might be a good option too, but I never liked it myself. It's 
all provided out of the box though.


- Craige

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php