0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
1 Posted Topic
I assume that ship listing page is ship.php [code] echo '<form action ="boat_info.php" method="POST">'; echo "<select name='bname' id='bname'> <option>Ship Name: </option>"; $query = "select SHIP_NAME from SHIP"; $result = mysql_query($query, $link); if (mysql_num_rows($result)) { while ($row = mysql_fetch_row($result)) { echo ("<option value=\"$row[0]\" >$row[0]</option>"); } } else { echo ("<option value=\"\">No …
The End.
cybersat