我正在学习如何使用 Php 和 Mysql (XAMPP)编写注册页面。
现在,我在这个网站上下载了源代码:
http://net.tutsplus.com/tutorials/php/create-a-signup-form-with-email-confirmation/
并试图确保它有效。但是打开时:
http://localhost/source/index.php
我收到以下警告:
Warning: include_once(C:\xampp\htdocs\source\inc\php\config.php) [function.include-once]: failed to open stream: Permission denied in C:\xampp\htdocs\source\index.php on line 3
Warning: include_once() [function.include]: Failed opening 'inc/php/config.php' for inclusion (include_path='.;C:\xampp\php\PEAR') in C:\xampp\htdocs\source\index.php on line 3
Warning: include_once(C:\xampp\htdocs\source\inc\php\functions.php) [function.include-once]: failed to open stream: Permission denied in C:\xampp\htdocs\source\index.php on line 4
Warning: include_once() [function.include]: Failed opening 'inc/php/functions.php' for inclusion (include_path='.;C:\xampp\php\PEAR') in C:\xampp\htdocs\source\index.php on line 4
以下是我收到警告的行:
<?php
include_once 'inc/php/config.php';
include_once 'inc/php/functions.php';
.
.
有什么帮助吗?