voodgen

<?
$lnk = mysql_connect(\'localhost\', \'root\', \'\') or die (\'Not connected : \' . mysql_error());


mysql_select_db(\'phpbb205\', $lnk) or die (\'Can\\'t use foo : \' . mysql_error());

$query = "SELECT * FROM phpbb_forums";

$result = mysql_query($query);
//$row    = mysql_num_rows($result) ;
while($result_row = mysql_fetch_row($result))
{
 echo $result_row[2].$result_row[3];
}
?>

分类:

技术点:

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-21
猜你喜欢
  • 2021-08-16
  • 2021-09-14
  • 2021-12-16
  • 2022-01-15
  • 2021-07-27
相关资源
相似解决方案