<% echo $registro['marca']." ".$registro['modelo']; %>
|
<% if($registro['ano_fabricacion'] == "") { print "ND"; } else { print $registro['ano_fabricacion']; } %>
|
<% if($registro['matricula'] == "") { print "ND"; } else { print $registro['matricula']; } %>
|
<% if($registro['precio'] == "") { print "ND"; } else { print $registro['precio']; } %>
€.
|
|
<%
$i = 1;
$color1 = "#ffffff";
$color2 = "#cccccc";
while($registro = mysql_fetch_array($resultado)) {
$bgcolor = ($i%2)?$color1:$color2;
$i++;
%>
<% echo $registro['marca']." ".$registro['modelo']; %>
|
<% if($registro['ano_fabricacion'] == "") { print "ND"; } else { print $registro['ano_fabricacion']; } %>
|
<% if($registro['matricula'] == "") { print "ND"; } else { print $registro['matricula']; } %>
|
<% if($registro['precio'] == "") { print "ND"; } else { print $registro['precio']; } %>
€.
|
|
<%
}
%>