duankuang7928 2018-04-14 08:07
浏览 111
已采纳

include(C:\ xampp \ htdocs \ website \ db_connection \ dbconnection.php):无法打开流:没有这样的文件或目录

I know there have been similar questions before but I've tried everything suggested in those threads and nothing is working for me. I tried setting the path, changing the location of the files, making sure permisions are right for the files in windows and nothing. I am trying run a php file that includes code to open another php file so I can acquire a connection but everything I do throws the same errors:

Warning: include(C:\xampp\htdocs\website\db_connection\dbconnection.php): failed to open stream: No such file or directory in C:\xampp\htdocs\website\db_connection\index.php on line 11

Warning: include(): Failed opening 'C:\xampp\htdocs\website\db_connection\dbconnection.php' for inclusion (include_path='C:\xampp\htdocs\website\db_connection') in C:\xampp\htdocs\website\db_connection\index.php on line 11

 <?php set_include_path('C:\\xampp\htdocs\website\db_connection'); ?>
 <?php 

 include('C:\\xampp\htdocs\website\db_connection\\dbconnection.php'); 
 ?>
 </head>
 <body>
 <?php
 if(isset($_POST['save'])){
    $sql = "INSERT INTO website (id, filelocation)
    VALUES ('".$_POST["id"]."','".$_POST["filelocation"]."')";

    $result = mysqli_query($conn,$sql);
 }

?>

location of files C:\xampp\htdocs\website\db_connection (both files are in this folder)

Maybe someone can see where I'm going wrong any help is appreciated

  • 写回答

2条回答 默认 最新

  • duanfan8699 2018-04-14 10:50
    关注

    Ok I got it working don't know what was wrong I just copied the path and file name again and it worked.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)
编辑
预览

报告相同问题?

悬赏问题

  • ¥20 MC9S12XS128单片机开发板实验,
  • ¥15 C#多线程假死或卡死问题
  • ¥15 关于#tcp/ip#的问题:苹果电脑M1,easyconnect登录成功,显示虚拟 IP 地址
  • ¥15 客户端发现不了OPC服务器
  • ¥35 spaceclaim脚本
  • ¥500 寻找华为新款路由器开telnet方法
  • ¥20 运行pointnerf模型遇到了pycuda的错误,如何解决?(相关搜索:测试代码|自动驾驶|数据集)
  • ¥15 失败的github程序安装
  • ¥15 WSL上下载的joern在windows怎么用?
  • ¥15 jetson nano4GB
手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部