我应该在哪里放置数据库文件来运行示例项目?

时间:2016-03-06 01:57:52

标签: php

我是PHP编程的新手。我在github找到了一个项目。

这是包含文件githum PHP project files

的项目的屏幕截图

我解压缩了项目并放入我的wamp www文件夹,然后通过http://localhost /shopping-master/index.php访问

它给出了连接错误。

请帮帮我。如何连接数据库?

我应该在哪里放置示例代码数据库以轻松运行项目?

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 个答案:

答案 0 :(得分:1)

您必须将.sql文件导入phpmyadmin。您需要使用表,视图,触发器等为该脚本构建数据库。如果您不这样做,脚本将尝试连接一些表,但它将不成功。首先,你需要创建和mysql用户和数据库,然后你应该从phpmyadmin导入那个购物.sql文件到那里。之后,您需要在第一阶段创建信息时配置connect.php(mysql用户名,密码和数据库名称字段必须与您的匹配。)文件。