hi friends....
I'm getting this type of error n running my program...

Warning: include(include_fns.php) [function.include]: failed to open stream: No such file or directory in C:\wamp\www\index.php on line 7

Warning: include() [function.include]: Failed opening 'include_fns.php' for inclusion (include_path='.;C:\php\pear') in C:\wamp\www\index.php on line 7

Can Anyone plzz Tell me what this problem is for..?
And also,What should I do to avoid this problem?

Recommended Answers

All 3 Replies

are you sure include_fns.php is in same folder as your source file. if not find proper path of that file.

It means that PHP can't find the file specified. Are you pointing to the right file?

Not sure but if you have written.

include(include_fns.php);

then try below and check.

include('include_fns.php');
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.