Hey,
I am using flurxRP emulator and cms and I am using a select/option on a form, where i want to have the option to set the option to either Pending or accepted, both option have been added to the database table and is fully working. But will i add the select and option attribute, then it only pulls "Pending" from the database table, Whereas i want it where you click on the dropdown select option and you can see accepted their and you just click it and once click then it updates the database table. How can i go about this.
Any help Appreciated and thanks in advance
I am using flurxRP emulator and cms and I am using a select/option on a form, where i want to have the option to set the option to either Pending or accepted, both option have been added to the database table and is fully working. But will i add the select and option attribute, then it only pulls "Pending" from the database table, Whereas i want it where you click on the dropdown select option and you can see accepted their and you just click it and once click then it updates the database table. How can i go about this.
Code:
<select>
<option value="' . $chat['b_status'] . '">' . $chat['b_status'] . '</option>
<option value="' . $chat['b_status'] . '">' . $chat['b_status'] . '</option>
</select>
Any help Appreciated and thanks in advance