1
vote
3answers
52 views
PHP Include Error
After changing my include header to a add a function. It disabled my php echo username code.
So it went from
htp://example.com/register.php?r=username
to
htp://example.com/register.php?r=
…
0
votes
1answer
39 views
PHP Include Error w/ CSS
I have having difficulties on this one page login.php becuase of the nature of the session it does not allow a $page to be called. I included the header the same way I did on all other pages. The code …
2
votes
3answers
68 views
Best way to load only specfic functions in PHP.
I'm writing my own content management system for a personal website, it's going to be low traffic, but I'd like to use the best practices for my future knowledge.
My plan is to have separate …
3
votes
3answers
96 views
C++: #include file search?
This MSDN document quotes:
look for include files in the same
directory of the file that contains
the #include statement, and then in
the directories of any files that
include (#include) …
2
votes
1answer
71 views
Question about the PHP include statement
I'm looking through the Zend_View source and I see this:
include 'zend.view://' . func_get_arg(0);
what does the string "zend.view://" represent and how would the include statement resolve that in …
1
vote
6answers
181 views
How do compilers know where to find #include <stdio.h>?
I am wondering how compilers on Mac OS X, Windows and Linux know where to find the C header files.
Specifically I am wondering how it knows where to find the #include with the <> brackets.
…
0
votes
3answers
71 views
Including an external webpage using PHP
How can I use PHP to include an external webpage? (sort of like the wordpress theme preview.)
I want (X)HTML STRICT compliant code - no iFrame and preferably no javascript.
The idea is that I am …
0
votes
4answers
89 views
Why can’t I pass variables into an included file in PHP?
I've had this problem before before with no real resolution. It's happening again so I'm hoping you experts can help.
I set a variable on my index.php based on the $_GET array. So I use this code:
…
1
vote
4answers
57 views
Windows XP path problem
My Environmental Variables (& I crosschecked every possible place in the Registry) show my PHP include path as: "C:\PHP\" --and PHP (5.2.9-2) works fine on the system, so that is correct. …
0
votes
3answers
27 views
Compiled FreeImage from source. #include FreeImage.h not found.
I have compiled FreeImage 3.10.0 from source at /lib/FreeImage on Mac OS X 10.6.
I can see that after compilation these files were copied:
/usr/local/lib/libfreeimage-3.10.0.dylib
…
1
vote
1answer
45 views
PHP include inside an include (different directory)
The structure for the current project I am working on is something like:
root/index.php
root/includes/php/first.php
root/includes/php/functions.php
So index.php includes first.php:
<?php …
1
vote
2answers
55 views
how to pre-process a PHP MVC view without using the framework?
Is there any way I can pre-process a PHP view script without using a particular MVC framework?
Basically I want to render the view and pass it as an HTML string to another view. The view I'm trying …
0
votes
1answer
15 views
PHP - Calling Relative URL within = ‘xx’ apostrophe’s
I'm trying to insert a relative URL in the code below before "/images" in $thumb_directory and $orig_directory however I'm not sure how to do so within 'apostrophe's'. Also, this is a WordPress …
0
votes
2answers
89 views
Why is PHP not including my file when it clearly exists?
Here is the exact problem. I have an autoload function set up with a piece of code that looks like this:
if(file_exists($class_file))
{
include($class_file);
return true;
}
However, when …
2
votes
2answers
47 views
PHP: Get PHP’s variables, functions, constants from a php file
Hello All,
Is there a way to get user-defined php functions, variables, constants from a php file?
Following functions are not the best way to do so because they get all decalred
…
