Psst.. new poll here.
Psst.. new forums here.
Microsoft is blocking us again (TY IP Reputation!) so just use oauth login instead. :)
Paste
Pasted as PHP by ope ( 16 years ago )
<?php
$session=session_id();
$sql="SELECT * FROM ekosik WHERE session='$session'";
$result=mysql_query($sql);
while ($radek=mysql_fetch_array($result))
{
$id=$radek['zbozi'];
$dotaz="SELECT * FROM ezbozi WHERE id=$id";
$vysl=mysql_query($dotaz);
$zbozi=mysql_fetch_array($vysl);
echo $zbozi['nazev'].", cena: ".$zbozi["cena"] ."<br />";
}
?>
Revise this Paste