- This topic is empty.
-
AuthorPosts
-
September 5, 2009 at 7:11 pm #26007
netxm
MemberI need to create page on website fezayarns.com which will display a list of products (thumbnails, you can organize them by name or category). When you click on thumbnail, separate page will open with full description of product. There will be about 200-400 items and new will be added every month. I was thinking about php+mysql…
Just give me an idea where to start. (php, javascript….)
Thank you.September 5, 2009 at 7:15 pm #63318Rob MacKay
ParticipantI would check the sticky threads out first in the Jquery and this PHP help forum ;)
September 5, 2009 at 10:17 pm #63317netxm
Memberdidn’t find anything, does anyone know any plugins or good tutorials. Thank you.
September 6, 2009 at 11:27 pm #63530synic
Member"netxm" wrote:I need to create page on website fezayarns.com which will display a list of products (thumbnails, you can organize them by name or category). When you click on thumbnail, separate page will open with full description of product. There will be about 200-400 items and new will be added every month. I was thinking about php+mysql…
Just give me an idea where to start. (php, javascript….)
Thank you.That’s a pretty broad question. You’re probably not going to find anyone that will write something up for you, so you might as well start attempting to learn/search for things on your own. Check out the Diving into PHP videos over at nettuts.com (they are linked in a thread that is stickied on this forum). Watch all of them and you’ll probably learn something you can use to accomplish what you need. However, I’ll help out a little.
Anyway, you would probably need to create several general SQL queries for each of your conditions. On your main page you seem like you seem like you want to display all of your products. All of these products (I’m assuming) are already in a database somewhere. For arguments sake, let’s call the database "information."
You’d probably want to connect to your database first. If you’re using PHP, you’d do something like this (I’m assuming you’d be using MYSQL too):
Code:So now you are connected to host using your ‘information’ database. Next you would probably want to select all of your products from your table that we will call ‘products’ and print them out.
Code:field_name1;
echo $row->field_name2;
}
?>// Close the connection if you’re done with it
mysql_close($con);The above code is one of several ways to output information from a database. I’d suggest reading the PHP manual to learn more about interacting with MYSQL – http://us3.php.net/manual/en/ref.mysql.php.
What I wrote is a super basic example, but it might help you a little bit. Only other thing I can say is that you’ll need to do some reading/watching on your own to understand things for your self. Cheers.
September 7, 2009 at 3:13 am #63539netxm
MemberThank you synic, I’ve already started to read PHP & MySQL book from SitePoint http://www.sitepoint.com/books/phpmysql4, watched 13 days of Dive into PHP from Nettuts, and tried to follow tutorial on sitepoint (http://www.sitepoint.com/article/php-gallery-system-minutes/) , but with no luck so far. So, I guess, I’m moving in right direction. Thanks again.
September 16, 2009 at 10:08 pm #64247bmdsherman
MemberSince your going to have tons of content fist off I would recommend a using pagination. There is a great tutorial on this here: http://www.phpfreaks.com/tutorial/basic-pagination
If you need any help shoot me an email bmdsherman[at]gmail[dot]com, I am working on builiding up my portfolio and would love to help.
September 29, 2009 at 4:24 am #64811patricksnead24
MemberHi,
This is really good discussion and informative too. I joined to solve my problem of how to connect to database ? can you guide me ? :P :lol: :|
Thanks,
September 29, 2009 at 6:30 am #64817bmdsherman
Memberpatricksnead24,
Is this what your looking for?Code:September 29, 2009 at 8:33 am #64824selenagriffin9000
MemberI have been using php and mysql provided in my hosting provider. I learned it by searching for training videos especially in youtube. Try it.
-
AuthorPosts
- The forum ‘Back End’ is closed to new topics and replies.