Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
select a.ID,b.ID from table a, table b
where a.ID >=1 and a.ID <= 5 and b.ID >=6 and b.ID <= 10 and
(b.ID-a.ID) =5
echo '<table border="1" bordercolor="white">';
$categoryquery = mysql_query("SELECT * FROM oradio");
while($categoryresquery = mysql_fetch_array($categoryquery))
{
// обработчик
$tds[] = '<td>'.$categoryresquery["id"].''.$categoryresquery["name_eng"].''.$categoryresquery["bitreit"].'</td>';
}
$i = count($tds);
if(!is_int($i/2))
{
$tds[] = " ";
}
$tor = array_chunk($tds, 2);
// генератор
foreach($tor as $value)
{
echo '<tr>';
foreach($value as $value2)
{
echo $value2;
}
echo '</tr>';
}
echo '</table>';
if(!is_int($i/2))
{
$tds[] = " ";
}
$arr = array();
while($ris=mysql_fetch_assoc($result)){
array_push($arr, $ris);
}
$i=0;
while($i!=5){
$html .= '<tr>';
$html .= '<td>'.$arr[$i]['ID'].'</td><td>'.$arr[$i+5]['ID'].'</td>';
$html .= '</tr>';
$i++;
}