. CLIMATIZADOR BI-ZONA. CONSUMO 6 A LOS 100. PRECIO 4900. GPS CD. 633235300. .
. coche familiar en muy buen estado
Al principio de esos registros hay un punto, asi como esos hay miles de registros
lo que quiero es quitar ese punto,el campo se llama detalle
Código PHP:
$query = "select DETALLE,COD from REGS limit 50 ";
$rs = mysql_query($query);
while ($row=mysql_fetch_array($rs)){
$detalle = $row['DETALLE'];
$codigo = $row['COD'];
if (preg_match('/^\./i',$detalle)){
$sqlu = "update REGS set DETALLE='$detalle' where COD = " . $codigo;
$resultu = mysql_query($sqlu);
}
}
mysql_free_result($rs);
alguien puede ayudarme?