下面有两段代码为什么执行结果不一样,帮解释,谢谢
<?php
$userName="root";
$userPwd="1234";
$dbName="test";
$serverName="localhost";
//连接数据库
$conn=mysql_connect("localhost","root","1234");
//选择数据库
$select=mysql_select_db("test",$conn);
if($select){
echo"数据库连接成功";
}
?>
和下面的代码执行结果不同,请分析下 <?php
$userName="root";
$userPwd="1234";
$dbName="test";
$serverName="localhost";
//连接数据库
$this->conn=mysql_connect($this->serverName,$this->userName,$this->userPwd);
//选择数据库
$this->my_db=mysql_select_db($this->dbName,$this->conn);
if($this->my_db){
echo"数据库连接成功";
}
?>
------解决方案--------------------在 ?> 前加入
}
new login;