urlencode($db).'">'.$db.'</a><br>'.chr(13);
}
mysql_free_result($dbs);
break;
case'table':
$tables=@mysql_list_tables($db,$con)ordie('mysql_list_tables出错:'.
$php_errmsg);
echo'tableson'.$db.'of'.$host.':<br>'.chr(13);
$num_rows=mysql_num_rows($tables);
for($i=0;$i<$num_rows;$i++){
$table=mysql_tablename($tables,$i);
echo'&nbsp;&nbsp;&nbsp;&nbsp;<ahref="'.$PHP_SELF.'?cmd=record&db='.
urlencode($db).'&table='.urlencode($table).'">'.$table.'</a><br>'.
chr(13);
}
mysql_free_result($tables);
echo'<hr><ahref="'.$PHP_SELF.'?cmd=db">showdatabases</a>'.chr(13);
break;
case'record':
$records=mysql_db_query($db,'select*from'.$table,$con)or
die('mysql_db_query出错:'.$php_errmsg);
echo'recordson'.$table.':<br>'.chr(13);
echo'<tableborder="1"cellspacing="0"cellpadding="0">'.chr(13);
echo'<tr>'.chr(13);
$num_fields=mysql_num_fields($records);
for($i=0;$i<$num_fields;$i++)
echo'<th>&nbsp;'.mysql_field_name($records,$i).'</th>'.chr(13);
echo'</tr>'.chr(13);
while($row=mysql_fetch_row($records)){
echo'<tr>'.chr(13);
for($i=0;$i<$num_fields;$i++)
echo'<td>&nbsp;'.$row[$i].'</td>'.chr(13);
echo'</tr>'.chr(13);
}
echo'</table>'.chr(13);
mysql_free_result($records);
echo'<hr><ahref="'.$PHP_SELF.'?cmd=db">showdatabases</a>&nbsp;&nbsp;
<ahref="'.$PHP_SELF.'?cmd=table&db='.urlencode($db).'">showtables
</a>'.chr(13);
break;
}
mysql_close($con)ordie('无法与'.$host.'断开连接');
?>

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章