| Services |
 |
| Leaders' Reports |
 |
| Search |
 |
| About China |
 |
|
 |
Chinese Laws and Regulations |
//start php
include "pager.inc";
$MyConnection=mysql_connect("localhost","yinwen","jd320sc");
mysql_select_db("english");
$MySQL="select * from laws";
$result = mysql_query($MySQL);
$num_of_rows = mysql_num_rows ($result);
for ($count = 1; $count<=$num_of_rows; ++$count)
{ $row = mysql_fetch_row ($result);
$id=$row[0]; $title=$row[1];
print " -";
print " $title
| ";
}
mysql_close();
?>
|