我正在研究我应该将我的android应用程序连接到phpMyAdmin数据库的项目,但是存在一些问题。当我运行代码时,浏览器上会出现相同的代码。
我正在做其他正确的事情,如连接等。
这是我的代码,有人请解释一下是什么问题
CODE: “
/** * A class file to connect to database */ class DB_CONNECT {
// constructor
function __construct() {
// connecting to database
$this->connect();
}
// destructor
function __destruct() {
// closing db connection
$this->close();
}
/**
* Function to connect with database
*/
function connect() {
// import database connection variables
require_once __DIR__ . '/db_config.php';
// Connecting to mysql database
$con = mysql_connect(DB_SERVER, DB_USER, DB_PASSWORD) or die(mysql_error());
// Selecing database
$db = mysql_select_db(DB_DATABASE) or die(mysql_error()) or die(mysql_error());
// returing connection cursor
return $con;
}
/**
* Function to close db connection
*/
function close() {
// closing db connection
mysql_close();
}
}
?>'
答案 0 :(得分:0)
你应该将<?php
放到文件的开头