phpMyAdmin
 sql >> Database >  >> Database Tools >> phpMyAdmin

come fare la citazione del giorno usando php e mysql in ordine per id

    quotes
    ----------------------------------
    | id | data        | data2
    ----------------------------------
    | 1  | first quote | translated quote
    | 2  | second...   | bla bla

E poi lo selezioni come:

   $firstday="2011-06-06";
    $getquote = mysql_query("SELECT * FROM quotes WHERE id=(DATEDIFF(CURDATE()+1, '$firstday'))");
$quote = mysql_fetch_object($getquote);
echo $quote->data . $quote->data2;

EDIT!!:ho eliminato datediff, quindi l'ID restituito dalla differenza di data è DIRETTAMENTE in DOVE.

Ciò che fa è calcolare la differenza tra il primo giorno e la data corrente . Quindi ogni giorno quel datediff sarà 1 più grande.DATEDIFF(CURDATE()+1, '$firstday') as datediff può essere interpretato come

datediff = differenceBetween(Currentday +1 and firstDay)
  • Ieri era il 06-07-2011, quindi datediff = 2011-07-07 (there is +1!) - 2011-07-06 che è 1
  • oggi è 2011-07-08 - 2011-07-06 che è 2
  • domani 2011-07-09 - 2011-07-06 che è 3
  • dopodomani 2011-07-10 - 2011-07-06 che è 4
  • tra un mese sarà 2011-08-08 - 2011-07-06 che è 33

quindi, datediff è ogni giorno più grande di 1

quotes
-------------------------
|id| data
-------------------------
|1| quote          day 1 (because date difference from start == 1)
|2| quote 2        day 2 (datediff == 2)
|3| quote 3        day 3 (datediff == 3)
|4| quote 4        day 4
.....

O a breve:ogni giorno sarà una citazione diversa, a partire dall'ID 1 in avanti.

Non posso spiegare più di questo..

EDIT #2:5 citazioni al giorno

$offset = date_diff(new DateTime('now'), new DateTime('2011-08-29'))->format('%d');
$getquote = "SELECT * FROM quotes LIMIT {$offset},5";

seconda modifica grazie a ajreal (Errore di sintassi SQL LIMIT )

EDIT #3:5 citazioni al giorno, modificabili per variabile..

opzione 1:

$choose=0; //statically defined, only first of that day will pop out

opzione 2:

$choose = mysql_real_escape_string($_GET["qid"]); //which one will be defined in url.. (watch out, people can figure it out and browse through all quotes

opzione 3:

$choose = rand(0,4); //will choose it randomly from those 5 daily quotes

Quindi scegli una di quelle opzioni che ti piacciono e aggiungila prima di questo:

$offset = 5*date_diff(new DateTime('now'), new DateTime('2011-08-29'))->format('%d') + $choose;
$getquote = mysql_query("SELECT * FROM quotes WHERE id = '$offset'");
$quote = mysql_fetch_object($getquote);
echo $quote->data . $quote->data2;