My next question (PHP)
I am trying to get the "platforms" listed in my database to show up where "$platform" is at in the drop down box.
can anyone help out?
I am trying to get the "platforms" listed in my database to show up where "$platform" is at in the drop down box.
Code:
<?
include("config.php");
?>
<html>
<form method="post" action="cp_admin/submitgame.php">
<h3>Title:</h3>
<input type="text" NAME="title">
<h3>Description:</h3>
<textarea name="description" rows="10" cols="48"></textarea>
<h3>Platform:</h3>
<select name="platform">
<option value="[COLOR=Red]$platform[/COLOR]">
</select>
<br>
<br>
<INPUT TYPE="submit" name="submit" value="submit">
</form>
</html>
can anyone help out?






