
14-03-2007, 14:54
|
|
|
|
חבר מתאריך: 14.03.07
הודעות: 5
|
|
|
שאלה פשוטה
איך מציגים טבלה שלמה מהבסיס נתונים?
עשיתי:
<?php
$con = mysql_connect("localhost","dotan);
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db(dotan, $con);
$result = mysql_query(SELECT * FROM games);
while($row = mysql_fetch_array($result))
{
echo ($row[name] $row[adress]);
echo ( );
};
mysql_close($con);
?>
וקיבלתי את השגיאה:
Parse error: syntax error, unexpected $end in c:\documents and settings\דותן\my documents\my programs\php\www\DOTAN\new folder\my.php on line 20
|