Pongo el siguiente codigo y me sigue dando un solo products_id y cuando busco en la base de datos hay mas de uno. Alquien me puede ayudar , por favor ?
No se que estoy haciendo mal
Código PHP:
$conexion = mysql_connect("localhost", "test", "test") or die ("Error: ". mysql_error());
mysql_select_db("test", $conexion);
$sq1="select products_id from products_to_categories where categories_id = '87' ORDER BY products_id DESC";
$result=mysql_query($sq1);
while($row=mysql_fetch_array($result)){
$variable=$row["products_id"];
fwrite($file,"$variable");
}
_