Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //Вывод 3-х рандомных товаров с БД
- for ($x=0; $x<3; $x++)
- {
- $random = mt_rand($min_page, $max_page);
- $tovar = $db->query('SELECT * FROM baza_virtual WHERE (id="'.$random.'") LIMIT 1') or die('Query failed');
- $row = $tovar->fetchArray();
- echo '<strong>'.$row['name'].'</strong><br><br><a href="'.$row['id'].'.html" target="_blank"><img src="'.$row['picture'].'" title="'.$row['name'].'" class="img-responsive"></a>';
- if ($x<2) {echo '<hr>';}
- }
Advertisement
Add Comment
Please, Sign In to add comment