Kod
include("the_first/sell.php");
echo'<center><fieldset>';
include("pdo.php");
$id = $_GET['id'];
$result = $pdo->query("SELECT * FROM `goods` where `link` = '$id' and `status` = 'activ'");
$result->setFetchMode(PDO::FETCH_NUM);
$dane = $result->fetch();
echo "<b>".$dane[1]."</b><br></fieldset>";
echo'<fieldset><centeR>Wystawiający: <b>'.$dane[5].'</b>
<br>
Aukcja ruszyła: '.$dane[6].'
<br>
Cena proponowana przez Wystawiającego to: <b>'.$dane[3].' zł.</b>
<br>
Ilość sztuk: '.$dane[7].'
<br>';
$data = strtotime("+10 days");
echo date("Y-m-d G:i:s", $dane[6]);
echo'
<br>
<hr>
'.$dane[2].'
</fieldset>';
Interesujący nas fragment zwraca: Aukcja ruszyła: 2009-06-07 19:25:33
Zrobiłem
Kod
$wynik = date("Y-m-d G:i:s",(strtotime($dane[6]) + (60*60*24*10)));
echo $wynik;