Cita:
Iniciado por AeroSilver Utilizá un array:
Código PHP:
Ver original$variable[0] = ID;
$variable[1] = NOMBRE;
$variable[2] = APELLIDO;
$file = fopen("productos.txt","w+"); for($i = 0; $i <= 2; $i++)
{
}
gracias a ti tambien Aerosilver , tambien trate de hacer el arreglo , pero la verdad es que lo debo estar haciendo mal , no conozco mucho o mejor dicho casi nada de php , lo intente hacer asi :
$sq1="select products_id from products_to_categories where categories_id = '87' ORDER BY products_id DESC";
$result=mysql_query($sq1);
$variable = array();
$variable[0] = "$result";
//$variable[1] = "products_id";
//$variable[1] = NOMBRE;
//$variable[2] = APELLIDO;
$file = fopen("productos.txt","w+");
for($i = 0; $i <= 0; $i++)
{
fwrite($file, $variable[$i]);
}
fclose($file);
pero no me resulto , me podias yudar por favor?