Discipline |
Atleet |
Prestatie |
Datum |
Locatie |
Opmerking |
[insert_php]
setlocale(LC_ALL,’nl_NL’);
global $wpdb;
$cat = ‘PUPM’;
$arr = array(1,2,0,18);
foreach ($arr as &$proef) {
$query = $wpdb->get_results(“select voornaam,naam,date_format(pres_dat,’%d-%m-%Y’) datum,proef,locatie,tijd from atleet_prestaties where categorie= ‘” . $cat . “‘ and proef_id = ” . $proef . ” and indoor=1 order by tijd2 asc limit 1 “);
foreach ($query as $row) {
echo “
” . $row->proef . “ |
” . $row->voornaam . ” ” . $row->naam . “ |
” . substr($row->tijd, 0, -1) . “ |
” . $row->datum . “ |
” . $row->locatie . “ |
“;
}
}
$arr = array(12,13,14,15,16);
foreach ($arr as &$proef) {
$query = $wpdb->get_results(“select voornaam,naam,date_format(pres_dat,’%d-%m-%Y’) datum,proef,locatie,afstand from atleet_prestaties where categorie= ‘” . $cat . “‘ and proef_id = ” . $proef . ” and indoor=1 order by afstand desc limit 1 “);
foreach ($query as $row) {
echo “
” . $row->proef . “ |
” . $row->voornaam . ” ” . $row->naam . “ |
” . $row->afstand . “m |
” . $row->datum . “ |
” . $row->locatie . “ |
“;
}
}
$arr = array(28);
foreach ($arr as &$proef) {
$query = $wpdb->get_results(“select voornaam,naam,date_format(pres_dat,’%d-%m-%Y’) datum,proef,locatie,punten from atleet_prestaties where categorie= ‘” . $cat . “‘ and proef_id = ” . $proef . ” and indoor=1 order by afstand desc limit 1 “);
foreach ($query as $row) {
echo “
” . $row->proef . “ |
” . $row->voornaam . ” ” . $row->naam . “ |
” . $row->punten . ” punten |
” . $row->datum . “ |
” . $row->locatie . “ |
“;
}
}
[/insert_php]