Grup böylece tarafından kullanılarak bir sorguya MultiQuery dönüştürmek

0 Cevap php

-Şema

CREATE TABLE `ratings` (
  `id` int(11) NOT NULL default '0',
  `rating` int(11) NOT NULL default '1',
  `rating_start` datetime NOT NULL default '0000-00-00 00:00:00',
  PRIMARY KEY  (`id`)
) TYPE=MyISAM

-Myprogram.php

foreach($ids as $id){
  $sql =  "SELECT rating FROM ratings WHERE id = '$id' AND rating_start >= NOW()"; 
  $sql .= "ORDER BY rating_start DESC LIMIT 1;"
  $ret = $db->execute($id);
}

Ben bir sorgudan aynı tarih teke miyim?

Şimdi foreach birçok sorunuz

0 Cevap