Warning: mysql_query(): supplied argument is not a valid MySQL-Link resource
Código PHP:
function marcas($nombreCampo){
$rs1 = mysql_query("SELECT * FROM marcas ORDER BY nombre ASC", $connection);
echo(mysql_error());
$html = "<select name=\"$nombreCampo\" id=\"$nombreCampo\" class=\"textFields01\">\n";
while($marca = mysql_fetch_array($rs1)){
$html = $html."<option value=".$marca['IDmarca'].">".$marca['nombre']."</option>\n";
}
$html = $html."</select>\n";
return $html;
}
con arroba adelante, pero.. tampoco funciona, para que sirve eso?
bueno.. muchas gracias!