Hallo!
Ich habe folgende SQL Abfrage in PHP und möchte etwas in eine Variable speichern:
In der Variablen $wpark steht aber nur das Wort uid und nicht der Wert! Kann mir da jemadn helfen? VIELEN DANK!
Ich habe folgende SQL Abfrage in PHP und möchte etwas in eine Variable speichern:
PHP-Code:
$offer = "SELECT table1.uid, table2.uid FROM table1, table2";
$result_offer= mysql_query($offer);
while($row1 = mysql_fetch_object($result_offer))
{
$wpark=$row1->table1.uid;
}
Kommentar