Adding a bidding tool to online store
Moderators: egami, macek, gesf
I'm trying to add a bidding tool to my online store where users can buy and sell football memorabilia. If anyone has any experience doing this kind of thing I would like some help. I want users to be able to advertise these items and also to place bids for items.
- Joan Garnet
- Moderator
- Posts: 387
- Joined: Sat Aug 03, 2002 2:56 am
- Location: Mars
- Contact:
This is a huge application
We can guide you throgh the steps, but you have to create the script.
If you have some code that doesn't work post it here and we'll check it.

We can guide you throgh the steps, but you have to create the script.
If you have some code that doesn't work post it here and we'll check it.
Joan Garnet wrote:This is a huge application
We can guide you throgh the steps, but you have to create the script.
If you have some code that doesn't work post it here and we'll check it.
Well I already have some of it done. Users can add the product they want to sell into a catalogue of products at the moment. The part I need help with is the actual bidding process itself. I want the user to be able to specify a date for the bidding to close and put a timer on for this. I also need to implement some way of tracking bids and keeping an account of the highest bid. If you could outline the steps I need to take to do this that id be sweet.
- Joan Garnet
- Moderator
- Posts: 387
- Joined: Sat Aug 03, 2002 2:56 am
- Location: Mars
- Contact:
You'll have to handle time functions:
To compare two different dates -->
To build the bidding system you will have to use mysq database to manage users' data.
Forms to input text, images, prices, posts, replies...
Lots of form checks to validate the inputs and the system as is.
I suggest that you write a text explaining all you want it to do, make a graphic scheme of the aplication: databases, tables, files, etc...
Is not an easy task... but this a good chance to have fun
Projects keep you up to date with languages.
To compare two different dates -->
Code: Select all
echo ( strtotime ("10 September 2003") - strtotime ("now") );
To build the bidding system you will have to use mysq database to manage users' data.
Forms to input text, images, prices, posts, replies...
Lots of form checks to validate the inputs and the system as is.
I suggest that you write a text explaining all you want it to do, make a graphic scheme of the aplication: databases, tables, files, etc...
Is not an easy task... but this a good chance to have fun

Projects keep you up to date with languages.