I’m going to create an auction (online) in PHP accessible from multiple clients to increase the offer value. To do this I created 2 web pages:
- dashboard.php – show the item with an offer and count down – if time expires the system assigns the item to the last user
- offer.php – any clients (after logging) can update the offer in dashboard.php
Result: I want to show the auction in real-time in a dashboard for all users and all participants can increase offers via tablet or mobile phone by using a button.
How can I refresh the dashboard after a client posts a request to increase the offer? Could you suggest a solution?