| Thema: | Multilanguage support |
|---|---|
|
unregistrierter Benutzer verfasst: |
I added a few things: pnuserapi.php: if($archiv == 1){ $query = " SELECT $newscolumn[sid], $newscolumn[title], $newscolumn[language] FROM $newstable ORDER BY $newscolumn[time] DESC LIMIT 31,200"; }else{ $query = " SELECT $newscolumn[sid], $newscolumn[title], $newscolumn[language] FROM $newstable ORDER BY $newscolumn[time] DESC LIMIT 0,30"; } $sql = $dbconn->Execute($query); if($dbconn->ErrorNo() != 0) { echo "DB Error: sitemapstories: " . $dbconn->ErrorNo() . ': ' . $dbconn->ErrorMsg() . ' '; exit (); } for($i= 0; !$sql->EOF; $sql->MoveNext()) { list($sid, $title, $language)= $sql->fields; $res[] = array('id' => $sid, 'title' => $title, 'lang' => $language); pnuser.php: $urls[] = "$v[title]"; |