View Single Post
ישן 16-03-06, 21:08   # 1
בונדי
משתמש חדש
 
מיני פרופיל
תאריך הצטרפות: Feb 2006
הודעות: 116

בונדי לא מחובר  

בעיה בקוד שהכנתי

בעיה בקוד בעע רושם לי תשגיאה הבאה :
http://bodego.loads.ws/index.php

הקןד :
PHP קוד:
<?
include "config.php";

     
$sqlquery="SELECT * FROM topics";
     
$theresult=@mysql_query($sqlquery,$con);
?>






<html>
<meta name="generator" content="Namo WebEditor(Trial)">
<body>
<table border="1" width="25%">
<tr>
<td align="center"><b>נושא ההודעה</b></td>
<td align="center"><b>נשלח בתאריך</b></td>
</tr>

<?
while ($recordeset=@mysql_fetch_array($theresult))
{
     echo 
"<tr>";
     echo 
"<td><a href=view.php?id=".$recordeset["id"].">".$recordeset["title"]."</a></td>";
     echo 
"<td><center>".$recordeset["date"]."</center></td>";
     echo 
"</tr>";
}
?>
</TABLE>
<?php mysql_close($con);?>
</body>
</html>
__________________
לא התקבלה שום בקשה לרישום בעסק.
  Reply With Quote