Services |
 |
Leaders' Reports |
 |
Search |
 |
About China |
 |
|
 |
//start php
$MyConnection=mysql_connect("localhost","yinwen","jd320sc");
mysql_select_db("english");
$MySQL="select * from laws where id=$id";
$result = mysql_query($MySQL);
$row = mysql_fetch_row ($result);
$title=$row[1];
$body=$row[2];
print " $title | ";
print "$body | ";
mysql_close();
?>
|