Implementazione cestino per le news

  • Creatore Discussione Creatore Discussione luigi777
  • Data di inizio Data di inizio

luigi777

Utente Attivo
14 Feb 2008
1.086
1
38
43
Massa, Italy
Salve vorrei implementare il cestino nel mio panello di controllo dove inserisco le news...

Ora ho questo codice che mi avevate aiutato ad fare nei mesi passati.

Ora mi chiedo come faccio ad aggiungere WHERE del='0' per far che visualizzo solo le news che non sono nel cestino.

perché del='1' (sono le news nel cestino), e del='0' sono le news ancora in memoria.

PHP:
$query = "SELECT utenti._user as _user , news_categorie.titolo as _cat , news.* FROM utenti 
       INNER JOIN news 
          ON utenti.id = news._userid INNER JOIN news_categorie 
          ON news_categorie.id = news._catid ";

if(!empty($_GET['cat'])) {
          $query.="WHERE _catid=".(int)$_GET['cat'];
          $cfg_current = $cfg_news_list_cat_admin;
}elseif(!empty($_GET['uid'])){
          $query.="WHERE news._userid=".(int)$_GET['uid'];
          $cfg_current = $cfg_news_list_utenti_admin;
}

vi ringrazio molto..

buona giornata.
 
ho provato ad aggiungere:
$query.="WHERE _catid=".(int)$_GET['cat']." and del=0";



ma quando seleziono mi da:

You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '_catid=1 and del=0' at line 4

come mai?

idee?

grazie mille.
 
ora ho messo del perché ho capito che era una parola riservata:
ed ho cambiato con _del

ma dice questo:
Column '_del' in where clause is ambiguous
 
Vuol dire che nella query ci sono più tabelle che hanno almeno un attributo con lo stesso nome.
Prova a mettere tabella.campo.

vi ringrazio era quello poi ho dovuto aggiungere un and e un where.
ecco:
PHP:
 $query = "SELECT utenti._user as _user , news_categorie.titolo as _cat , news.* FROM utenti 
       INNER JOIN news 
          ON utenti.id = news._userid INNER JOIN news_categorie 
          ON news_categorie.id = news._catid WHERE news._del=1";

if(!empty($_GET['cat'])) {
          $query.=" and _catid=".(int)$_GET['cat']." AND news._del=1";
	
          $cfg_current = $cfg_news_list_cat_admin;
}elseif(!empty($_GET['uid'])){
          $query.=" and news._userid=".(int)$_GET['uid']." AND news._del=1";
	
          $cfg_current = $cfg_news_list_utenti_admin;
}

mi dite se va bene?.

grazie mille.
 

Discussioni simili