Tagged Questions
The php-include tag has no wiki summary.
2
votes
2answers
418 views
Unable to access global variable in included file
I am having an unexpected issue with scope. The include documentation (also applies to require_once) says the required file should have access to all variable at the line it was required.
For some ...
1
vote
2answers
78 views
php include_paths in htaccess
I have a few things in various different files that get called from different places. I've been trying to use a $ROOT variable, but because I'm going from a few different files (index.php, view.php, ...
1
vote
6answers
198 views
need suggestions: How to prevent the style (css) of an 'included' page (php) from beeing modified by the 'host' page css
Hi all dear friends!
I thought I learned CSS :) Now after years finally a new challenge! Maybe You have some suggestions:
I cannot figure out how to make an external.php page have his own css.
The ...
1
vote
3answers
580 views
PHP include one website into another
I'm trying to show my Dropbox Public Folder on my website, i've got the link and i'm trying to use PHP include to do it like this:
<?php
include("MY DROPBOX LINK");
?>
But nothing shows up. ...
0
votes
4answers
68 views
php inludes for relative paths
I'm testing my set up with xampp, and my problem is as follows. I have two files, one called connect.php and one called testStuff.php . Both files are in the same folder, yet when I run testStuff.php ...
0
votes
1answer
43 views
How do I create absolute paths for INCLUDEs and REDIRECTs that will work regardless directory nesting level?
I have a problem similar to the one mentioned here, except I need a solution for ABSOLUTE PATHs:
How to use a PHP includes across multiple directories/sub directories with relative paths
The ...
0
votes
1answer
65 views
php include in .htaccess not getting set
I am trying to set the include path for php in my htaccess file. It works on my local computer but on my dev server it doesn't work. Both ubuntun running apache2.2 Here is my .htaccess file:
...
0
votes
3answers
124 views
PHP script detect that it is an include
I have a PHP class file that is used as an include both through a web server and by a cron process. I am looking for a way to add some code to the head of the script so that I can detect if the script ...
0
votes
0answers
364 views
Custom Functions and PHP includes in Drupal 7
What's the correct way to create custom PHP functions and use custom PHP includes in Drupal 7? For now, I've created a custom module that has all my custom functions, one of which is an includeFile() ...
0
votes
1answer
283 views
Problem with URL path on WAMP server
I'm probably having confusion with relative and absolute paths...
Say I have a file that could be anywhere on my directory. I want to use PHP include to include a footer.php file. This footer file is ...
0
votes
2answers
263 views
How to include file with session - without getting session error. Please help!
and... please help! arrrrrgh!
I'm learning php, playing around with my first PHP experiment. A small 'comments' widget.
I'm trying to include that widget into any .php file at wish- in the most ...
0
votes
3answers
818 views
Using CodeIgniter is it bad practice to load a view in a loop
I just got started with CodeIgniter and am wondering will it slow things down if I put code like this in a loop.
$data['title'] = 'the title';
$data['content'] = 'blah blah blah';
...
0
votes
3answers
2k views
How can I make a php script add a tab to every line of an include file?
Within my HTML, I have a php script that includes a file. At that point, the code is indented 2 tabs. What I would like to do is make the php script add two tabs to each line. Here's an example:
Main ...
-1
votes
2answers
41 views
JSON decode with php include
I want to include a php file in one another and decode the JSON that I get.
Here“s my code:
<?php
$jsonstring = include('php/get_recipe_byID.php');
$obj = json_decode($jsonstring);
...