Wrox Programmer Forums
|
PHP How-To Post your "How do I do this with PHP?" questions here.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the PHP How-To section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old March 27th, 2009, 01:23 PM
Authorized User
 
Join Date: Jan 2009
Posts: 16
Thanks: 1
Thanked 0 Times in 0 Posts
Default include a file

hi,

i have to include a file name with L'ornement. i do it with
Code:
include "L'ornement.php";
If i do it i get the following error..
Code:
Warning: include(L\'ornement.php) [function.include]: failed to open stream: No such file or directory in ...
but i have a file with L'ornement.php, help please.
__________________
divinequran.com
 
Old March 27th, 2009, 05:58 PM
Friend of Wrox
 
Join Date: Sep 2005
Posts: 166
Thanks: 2
Thanked 33 Times in 33 Posts
Default

Hi svar,

I've just tried on Windows with IIS + PHP5 and it worked as expected. It shouldn't make a difference with Apache or Linux, and I couldn't find anything on the web about it, but maybe.
Could you just do a basic test to make sure the name is not causing an issue - just put these two files in a folder and run index.php.

index.php
PHP Code:
<?php include "L'ornement.php"?>
L'ornement.php
PHP Code:
<?php print "I have been included!"?>
If this works it is probably looking in the wrong place - e.g. is L'ornement.php included via another include in a different directory?

Phil





Similar Threads
Thread Thread Starter Forum Replies Last Post
Include file morpheus BOOK: Beginning PHP4/PHP 5 ISBN: 978-0-7645-4364-7; v5 ISBN: 978-0-7645-5783-5 1 April 23rd, 2006 08:20 AM
difference between include file & include virtual crmpicco Classic ASP Basics 2 January 23rd, 2006 11:50 AM
Include File morpheus Beginning PHP 8 January 17th, 2006 09:30 AM
How to use "#include file in if..then statment? Gravicapa Classic ASP Basics 7 April 16th, 2004 10:53 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.