View Single Post
ישן 22-11-06, 19:13   # 3
forils
Permanently Banned
 
מיני פרופיל
תאריך הצטרפות: Apr 2006
הודעות: 368

forils לא מחובר  

מראה את השגיאה הזאת לאחר שהכנסתי את נתוני המסד :
Parse error: syntax error, unexpected T_LNUMBER in /usr/home/matrixip/domains/dicw.net/public_html/1/index.php on line 10

(זאת השורה :
PHP קוד:
echo ("<table width="600" cellpadding="2" cellspacing="2 border=1"> "); 
בדף :
PHP קוד:
<?php

mysql_connect
('localhost','dos_m4','111111');
mysql_select_db('news'); // החלף את השם של בסיס הנתונים בשם שאתה קבעת
$result mysql_query("SELECT * FROM 'news' ORDER BY 'id' DESC");

// הצגת הכתבות
while ($row=mysql_fetch_array($result))
{
echo (
"<table width="600" cellpadding="2" cellspacing="2 border=1"> ");
echo (
"<tr> ");
echo (
"<td bgcolor="gray" width="100%">" $row['subject'] . "</td> ");
echo (
"</tr> ");
echo (
"<td bgcolor="white" width="100%">" $row['content'] . "</td> ");
echo (
"</tr> ");
echo (
"</table> ");
echo (
"<br>");
}

?>
  Reply With Quote