sql >> Database teknologi >  >> RDS >> Mysql

skift mysql til pdo og gem resultatet i variabel

Prøv dette:

<?php
$games_sql = "SELECT id,col1,col2,now FROM tblname ORDER BY now ASC LIMIT 9";
$sth = $conn->query($games_sql);
$sth->setFetchMode(PDO::FETCH_ASSOC);

$gn=0;
while ($game_get = $sth->fetch()) {

$id = $game_get['id'];
$col1 = $game_get['col1'];
$col2 = $game_get['col2'];
$now = $game_get['now'];

$gametimeanddate = jdate("l d M y time G:i",$now);
$gamedate = jdate("l d M y",$now);
$gametime = jdate("G:i",$now);

//SAVE VALUES IN ARRAY
$items[] = array('id' => $id, 'col1' => $col1, 'col2' => $col2, 'now' => $now, 'gametimeanddate' => $gametimeanddate, 'gamedate' => $gamedate, 'gametime' => $gametime); 

$gn++;

    if(($gn%2)==0){
        $class='background-color:#EEE';
    }
}
?>

BRUG EKSEMPEL FOR ARRAYVÆRDIER:

<?php
echo '<table>';
    foreach($items as $value)
    {
        echo '<tr>';
        echo '<td>'. $value['id'] .'</td>';
        echo '<td>'. $value['col1'] .'</td>';
        echo '<td>'. $value['col2'] .'</td>';
        echo '<td>'. $value['gametimeanddate'] .'</td>';
        echo '<td>'. $value['gamedate'] .'</td>';
        echo '<td>'. $value['gametime'] .'</td>';
        echo '</tr>';
    }
echo '</table>';
?>

MED DIT EKSEMPEL:

<?php
foreach($items as $value)
{
    echo $value['id']?>&title=<?php echo func1($value['col1']).'-'.func1($value['col2']);
}
?>

BOB:

Et par gode tutorials til at lære nogle grundlæggende om BOB

NetTuts

phpro

EDIT:

Du kan udtrække dine matrixværdier til variabler. Eksempel:

<?php

$items = array("color" => "blue", "size"  => "medium", "shape" => "sphere");

extract($items);

echo $color;

?>

Med dit eksempel mangler du bare

extract($game_get);


  1. Hvordan tilføjer man indledende nul til forskellige char-længder i mysql?

  2. django.db.utils.OperationalError:(2013, Mistet forbindelse til MySQL-serveren ved 'håndtryk:læser initial kommunikationspakke', systemfejl:0)

  3. MySQL json_arrayagg med venstre join uden resultater

  4. MYSQL installation med en .NET winforms app