hi,
i am trying to create a orders page and i need a form on a list of orders to show the current status of the order eg new , dispatched ect,
when a order is created the defult value is NEW sohow can i show this and alter it in the page?
i have this so far
<form id="form1" name="form1" method="post" action="">
<select name="select">
<option><? echo $rows['status']; ?></option>
<option><? echo $dispatched; ?></option>
<option><? echo $awaiting; ?></option>
</select>
</form>
thanks in advance