02. januar 2012 - 23:28
Der er
3 kommentarer og 1 løsning
Fra asp til PHP
Hej jeg har denne kode som jeg vil lavet om til PHP fra ASP: <% sql2 = "SELECT * FROM brand order by b_id desc " set rs2 = Conn.Execute(sql2) %> Brand-typer <select name="intbrandtypeForm"> <option>Valg af Brand-typer</option> <% do until rs2.eof %> <option name="intbrandtypeForm" value="<%= rs2("b_id") %>"><%= rs2("brand") %></option> <% rs2.movenext loop %> </select><br /><br />
Annonceindlæg fra Infor
02. januar 2012 - 23:39
#1
<?php $sql2 = "SELECT * FROM brand ORDER BY b_id DESC"; $rs2 = mysql_query($sql2); ?> Brand-typer <select name="intbrandtypeForm"> <option>Valg af Brand-typer</option> <?php while($row = mysql_fetch_assoc($rs2)) { echo '<option name="intbrandtypeForm" value="'.$row["b_id"].'">'.$row['brand'].'</option>'; } ?> </select><br /><br />