בעיה בהצגה לפי Id
http://bodego.loads.ws/view.php?id=20
הקוד :
PHP קוד:
<?
include "config.php";
$id = $_GET['id'];
$sqlquery="SELECT * FROM topics WHERE id='$id'";
$theresult=@mysql_query($sqlquery,$con);
while ($recordeset=@mysql_fetch_array($theresult))
{
echo 'נשלח על ידי: ".$recordeset["poster"]."';
echo 'בתאריך: ".$recordeset["date"]."';
echo '".$recordeset["title"]."';
echo 'ההדעה: ".$recordeset["text"]."';
echo '______________';
echo '".$recordeset["avter"]."';
echo '<a herf=edit.php?id=".$recordeset["id"].">ערוך</a>';
echo '<a herf=remove.php?id=".$recordeset["id"].">מחק</a>';
echo '-------------------------------------------------';
}
?>
<?php
mysql_close();
?>
__________________
לא התקבלה שום בקשה לרישום בעסק.
Last edited by בונדי; 17-03-06 at 01:58..
|