You will need to develop a Lightstreamer Data Adapter and a Lightstreamer Metadata Adapter using PHP. This can be done by leveraging the server-side network protocol (see
this tutorial).
Bear in mind that such PHP Adapters will need to keep persistent TCP connections to Lightstreamer Server.
When a user submits a bid, the following sequence will take place:
1) the bid is forwarded to your PHP Metadata Adapter (MA).
2) The MA passes the bid to your PHP Data Adapter (DA).
3) The DA sends the bid back to LS Server for publishing to the admin only.
4) The admin approves the bid, sending it back to the MA.
5) The MA passes the bid to the DA.
6) The DA sends the bid to LS Server for publishing to all the users.