Reputation: 11
I want to create a product website with 80 pages. Its a product showcase and I have 70 products with its images and specifications. If its in html , I have to create 70 pages, i would like to do it in php and my sql. What I would like to do is , I will create a template for the product page.On click of each product name , the details of the product such as image , product name , specifications should load. The strucute of the site site is like this
category 1
product 1
product 2
product 3
product 4
product 5
....
....
product 30
category 2
product 1
product 2
product 3
product 4
product 5
....
....
product 30
category 3
product 1
product 2
product 3
product 4
product 5
....
....
product 30
How can I do this with php and mysql. Basically i am a UI developer and I have some practical knowledge in php. I dont know mysql. Can anybody guide me where to start . Is there any tutorial available for this?
thanks a ton in advance navii
Upvotes: 0
Views: 2740
Reputation: 1752
Your question is way to general to give a good answer in 5 minutes.
There are many dozen ways you could implement what you describe. I would start looking into some of the frameworks available for developing this. But that is my preference.
I would start with the tutorials for:
and see if that could get you started.
otherwise:
product.php?id=23
Upvotes: 1
Reputation: 32586
Simplest solution would be to check out a CMS like Joomla! (http://joomla.org) or Drupal (drupal.org?)
Upvotes: 4
Reputation: 7374
http://www.codewalkers.com/c/a/Database-Articles/Create-dynamic-sites-with-PHP-MySQL/ - good old Google!
Upvotes: 3