Create database with image display

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
prasitc2005
Forum Commoner
Posts: 42
Joined: Thu Jul 13, 2006 7:14 am

Create database with image display

Post by prasitc2005 »

Hi

I'm a newbie so wonder if you coudl help me solving the following puzzle:

- I want to create table for products with id, name, category, type, image, pdf link
- I want to be able to display the products on homepage with images and they will be displayed in 2 columns 5 rows
- I want to create admin page so a colleague could log in and add, modify or delete the products
- I want to create product search

Anybody knows a good tutorial for this?

Thanks a lot!
User avatar
daedalus__
DevNet Resident
Posts: 1925
Joined: Thu Feb 09, 2006 4:52 pm

Post by daedalus__ »

You need to start with the manual and go through the language reference.

After that Google for some tutorials and if you need more help, come back here and search the forums. If you are still stuck after that, make another post.

It's a three step-process and if you can master it, you can master any language or job:

RTFM, Google, DevNetwork
User avatar
prasitc2005
Forum Commoner
Posts: 42
Joined: Thu Jul 13, 2006 7:14 am

Thanks

Post by prasitc2005 »

Thanks a lot

Could you be more specific by the three step-process? Which manual and language reference I should go for? I probably ask too much for this forum but hey it's very useful for everyone so let's make a good reserch! I'm waiting to hear more from you!
User avatar
Weirdan
Moderator
Posts: 5978
Joined: Mon Nov 03, 2003 6:13 pm
Location: Odessa, Ukraine

Post by Weirdan »

Which manual and language reference I should go for?
PHP Manual
User avatar
aerodromoi
Forum Contributor
Posts: 230
Joined: Sun May 07, 2006 5:21 am

Re: Create database with image display

Post by aerodromoi »

prasitc2005 wrote:Hi

I'm a newbie so wonder if you coudl help me solving the following puzzle:

- I want to create table for products with id, name, category, type, image, pdf link
- I want to be able to display the products on homepage with images and they will be displayed in 2 columns 5 rows
- I want to create admin page so a colleague could log in and add, modify or delete the products
- I want to create product search

Anybody knows a good tutorial for this?

Thanks a lot!
I posted a mock-up oop snippet for a shopping cart a while back in the following thread: viewtopic.php?t=50125 .

Irrespective of the discussion whether it's advantageous to reinvent the wheel for learning purposes or to modify an existing script, I'd suggest you google for "php free online shop" and take a look at an open source system to get a broad overview of what's required for a secure and fast script.
Post Reply