ציטוט:
נכתב במקור על ידי בונדי
http://bodego.loads.ws/view.php?id=20
הקוד :
PHP קוד:
<? include "config.php";
$sqlquery="SELECT * FROM topics ORDER BY 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 '-------------------------------------------------'; } ?> <?php mysql_close(); ?>
|
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 '-------------------------------------------------';
}
?>
<?php
mysql_close();
?>