$sql_table_get=mysql_query("select orderline.quantity, menu.item_name, menu.price
from orderline, menu, orders
where orderline.item_id = menu.item_id
and orders.order_id = orderline.order_id
and orders.table_num =table".'"$count"'." // problem line
and orders.order_status = 0; ");
tried many combo and couldn't make it work yet.
basically i just need to know how to combine a $variable and a string inside the "mysql_query"
thanks