Replies
Welcome, guest
Join CrazyEngineers to reply, ask questions, and participate in conversations.
CrazyEngineers powered by Jatra Community Platform
-
@bayazidahmed-qg0JR9 • Jul 21, 2008
using PHP? -
@hbk-UY6MQq • Jul 21, 2008
yes.... PHP = frontend, MySQL = backend... -
@bayazidahmed-qg0JR9 • Jul 21, 2008
i am supposing that u know how to create a databse connection using php. and u have the required field from the table in a resource. If you dont then tell me.
<SELECT NAME="someName">
<?PHP
while($row = mysql_fetch_array($resource, MYSQL_ASSOC))
{
?>
<OPTION VALUE=<?PHP echo $row['field']; ?>><?PHP echo $row['field']; ?>
<?PHP
}
?>
</SELECT>