我是PHP編程新手。我在github上找到了一個項目。我應該在哪裏放置數據庫文件以運行示例項目?
這是一個包含githum PHP project files
我提取項目,並通過http://localhost /shopping-master/index.php
它給出了一個連接錯誤放在我wamp www
文件夾和訪問的文件的項目的屏幕截圖。
請幫幫我。我如何連接到數據庫?
我應該在哪裏放置示例代碼數據庫來輕鬆運行項目?
this is screen shot
enter code here
//connect.php file
<?php
$server_name = "localhost";
$user_name = "root";
$pass = "";
//$db = "easygaadi";
$db = "shopping";
$conn_error = "not connected";
if(@!mysql_connect($server_name,$user_name,$pass) || @!mysql_select_db($db))
{
die($conn_error);
} //else {
//echo "<span style='background-color:yellow'>Connected to Database
Successfully!!</span><br>";
//}
//this is index.php file
<!DOCTYPE html>
<html>
<?php require 'connect.php';
ob_start();
session_start();
?>
<head>
這是截圖[1]:http://i.stack.imgur.com/koLTq.jpg [2]:http://i.stack.imgur.com/a7ZTP.png –
只是告訴我在connect.php文件中使用$ db =「shopping」; &當我提取項目thiere是一個文件shopping.sql告訴我,我該怎麼辦?將這個文件放在www文件夾的某個地方,或者從phpMyAdmin創建新的數據庫nsmed「shopping」? –