I have a table name order_detail in MySQL database and I get values in it from my android app so I want to show order_id as a notification in my admin panel which is coded in HTML/PHP
Table Name: order_detail its attributes are as follow
item_id | order_id | item_name | price | quantity
I have notification icon in my admin panel I want to show order_id in it whenever someone gives order from android app and that order is stored in above-mentioned table I get notification
code for notification icon is:
<a href="#" class="dropdown-toggle" data-toggle="dropdown"><span class="label label-pill label-danger count" style="border-radius:10px;"></span> <span class="glyphicon glyphicon-envelope" style="font-size:18px;"></span></a>