Codice PHP:
$query11 = "SELECT * FROM carrelli WHERE Pagato = '0' AND Annullato = '0'";
$result11 = mysql_query($query11, $db);
$conto_posti = mysql_num_rows($result11);
while ($row11 = mysql_fetch_array($result11)) {
$Posto2 = $row11["Posto"];
$Posto2 = str_replace("T","Tribuna ",$Posto2);
$Posto2 = str_replace("F","Fila ",$Posto2);
$Posto2 = str_replace("s","Posto ",$Posto2);
$Posto2 = str_replace("_"," Posto ",$Posto2);
$array_posti = $Posto2;
}
$mess = "testo
";
devo estrarre l'array ed aggiungero in $mess (dopo testo
).
Presumo serva:
Codice PHP:
for ($num = 1 ; $num <=$conto_posti ; $num++) {
//non so come fare
}
Soluzione?