DB Driven, Searchable Product Application

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
User avatar
redzonne
Forum Newbie
Posts: 8
Joined: Sun Mar 06, 2005 12:27 pm
Location: Los Angeles

DB Driven, Searchable Product Application

Post by redzonne »

I am working on a real estate showcase site that would allow subscribers to post their properties online. I want to put together an application that -

(A) would automatically generate an HTML module (that would be listed 12 to a page) that would feature a thumbnail pict (uploaded by user) of a specific property and brief specs that if clicked, will lead to a DB driven dynamically generated extended detail HTML page for each entered property.

(B) allow vistors to search gallery of properties based on the below criteria:
a. City or Zip Code
b. Price Range (Min to Max or No max)
c. Property Type
d. Bedroom Count
e. Bathroom Count

I know this sounds like a very ambitious endeavor for a newbie! Could anyone point me to some project specific relevant tutorials or previous posts that would help me put whole picture together?

Thanks all!
User avatar
infolock
DevNet Resident
Posts: 1708
Joined: Wed Sep 25, 2002 7:47 pm

Post by infolock »

that would be near to impossible to point to that kinda thing (except if you just downloaded something similar to hotscripts). in order to do what you are wanting, that would take a lot of php... meaning i can't just point you to one or 2 links, but more like 15 or 20 heh..

best thing to do is get on php.net and read the manual, try creating the code, and then psot when you have problems. that's about hte best way to get this done. however, if you want to look for a programmer (either to pay them or freelance them), we could send this to either the Job Hunt forums or the Volunteer section.
User avatar
feyd
Neighborhood Spidermoddy
Posts: 31559
Joined: Mon Mar 29, 2004 3:24 pm
Location: Bothell, Washington, USA

Post by feyd »

break it all down into smaller parts, individual steps and bits.

things to build:
  • file upload processing
  • thumbnail generation
  • database tables for all relational data
  • learn how to create a search system using a database
User avatar
infolock
DevNet Resident
Posts: 1708
Joined: Wed Sep 25, 2002 7:47 pm

Post by infolock »

not to mention determining when to post a picture, how many to post on one page, doing a login authentication system, and the list goes on.
User avatar
redzonne
Forum Newbie
Posts: 8
Joined: Sun Mar 06, 2005 12:27 pm
Location: Los Angeles

Post by redzonne »

Whoa!!! I guess better get started then...
Post Reply