The `include()` function in PHP allows you to to include other PHP files, which will then by executed by PHP.
0
votes
3answers
49 views
Switching to a different PHP include
I have been working with HTML for a while now and I am just starting out with PHP
I have created a simple page with a menu that uses the PHP include function. The menu works but I was wondering how to ...
-4
votes
0answers
47 views
Pros and Cons of php include() vs jquery.load() [closed]
On one of my web page i need to include a external file into a div.
The external page contains a chat script.
At the moment I am using php inlude() function for all my webpages to appear the chat on ...
0
votes
0answers
12 views
php include not working in textbox and email
I have a file called dealerid.php the inside of this file is simple
AAABBBCCC
In another file called emailformulier.js i have the following code
var currentDate = new Date()
var day = ...
0
votes
1answer
41 views
Set up correct relative path across my site and in php-include functions
I have a basic question and since I am a noob with php it is difficult to dig through the thousands of questions you already answered...So I ask you for further help, sorry...
I just need to recall ...
0
votes
3answers
26 views
PHP include a text file whilst keeping carriage returns?
I have a text file that I'm including on my page, however the carriage returns aren't there as they are in the text document. How can I keep them as they are in the text document?
2
votes
3answers
53 views
Use of php Include in html files
I'm having some problems on my website using some php code. My site is mainly using html and php. Instead of repeating lots of lines of script at the top of every page, i'm just using the php include ...
0
votes
0answers
96 views
dynamic jQuery Mobile Page using PHP include statement
Is it proper to build a JQMobile page by using a php include statement to include a header.php file that contains the beginning <html> tag, the <head>, the opening <body> tag and the ...
1
vote
2answers
48 views
PHP include() creates unwanted gaps in HTML
I have a document that includes a header (menu) and a footer in PHP:
<?php include('header.php'); ?>
<?php include('footer.php'); ?>
For some reason when opened on the browser it ...
0
votes
3answers
89 views
php include inside a <form> tag.. how? [closed]
I have this loop - that creates several fields in a form:
while ($correctRow = mysql_fetch_array($result, MYSQL_NUM)) {
print "
<input type='textbox' name='date_$i' ...
0
votes
2answers
78 views
PHP Front Controller Class Not Found (Namespaces)
The following PHP code
public function go()
{
$controller = ucfirst($this->getController());
$method = $this->getAction();
require_once VENDOR_PATH . DS . ...
0
votes
1answer
27 views
PHP site code validates and doesn't validate at the same time
I'm trying to validate the website http://www.athometechsolutions.net/index.php and I'm having trouble.
When I type the URL into the W3 validation service, I get the following error:
Error Line 12, ...
0
votes
1answer
40 views
Broken links resulting from php include references
I'm learning php but am up against a wall right now with a referencing issue. I've searched a lot but I can't find any posts with my exact structural problem. Hoping to master this hurdle so I can ...
0
votes
3answers
68 views
Random whitespace in a PHP page (the client received page, but not the client-received source-code), but only when I use an include()
Ok, I am having the weirdest problem in history. I am making a website that works perfectly in HTML, but is having some REALLY odd behaviour when rendered from PHP - despite having the EXACT SAME ...
0
votes
0answers
21 views
(navigation ) phpinclude script dont show in localhost but work fine online
I m novice in php...so applogies my question might be very amateur.
I have created a navigation menu ( to all pages which i have included ( php inlude ) in all pages. ...
0
votes
2answers
33 views
Can I dynamically detect the Zend framework in the include path?
I'm developing a plugin for WordPress that will add additional functionality if the Zend framework is available, but the functionality added is not great enough to justify the user installing the ...
0
votes
3answers
74 views
Will googlebot run my php code before index my site?
I'm handling my main menu links and some others important content links whith the PHP function: include_once ('mainmenu.inc.php'), and I'm wonder about if google will run my PHP code before ...
-6
votes
1answer
51 views
PHP get variables from other PHP file [closed]
I have 2 files: red.php and config.php.
/* config.php */
$app_id = '1111111'
$page_url = 'http://www.facebook.com/xx1';
I would like to access $app_id and $page_url from red.php. How can I do ...
0
votes
1answer
74 views
How to include contact form in sidebar or footer? Use Php?
I need to include a simple contact form in either the sidebar or footer of an existing website so it appears on every page.
This is not a WordPress site, I have seen there are several plugins for ...
0
votes
4answers
137 views
Function to echo css in the head and also include file.php inside the body
I am trying to create a function in my sitewide-variables.php that will echo some additional css (which doesn't need to be included with every page) in the head of the page and at the same time to ...
0
votes
1answer
53 views
2 Navigation bars, one include for the content area. How do I effectively change the contents of the navbar#2 and content from a link on navbar#1
I have two navbars right at the top of my page:
<section id="topnav">
<ul>
<li><a href="#">Links formatted like this</a></li>
...
0
votes
5answers
138 views
Full URL not working with php include
So, I am trying to insert a file with a php include, but for some reason it doesn't work with the full URL.
This works:
<?php include 'menu.html' ?>
But this does not:
<?php include ...
0
votes
1answer
290 views
jquery noConflict not working in php include()
jquery.noConflict doesnt work for some reason when loading from an exernal file using php includes? aslo noticed that maybe some scripts arent fully loading as well?
mainfile.php
<script ...
0
votes
1answer
41 views
Dynamically changed files in PHP. Changes sometimes are not visible in include(), ftp_put()
I have scripts like these:
file_put_contents("filters.php", '<? $filter_arr = '.var_export($filter_arr, true).'; ?>');
include("filters.php");
or:
$xml = '<?xml version="1.0" ...
0
votes
0answers
143 views
php cookie session based include
I am trying to modify the following script so that if the user has a valid cookie the file "links.inc.php" is shown and if not the file "login.inc.php" is shown. So far my own trys have not worked. ...
0
votes
1answer
65 views
PHP site built in local, need to transfers include paths and secure files with .htacces
I am making a site in local.
My paths looks like this in my website : (I know they are written in a dirty way...)
in php :
include ...
0
votes
2answers
1k views
Opencart module include custom php file issue?
I'm trying to create an OpenCart 1.5.1.3 module. The issue I'm having is with including a custom php script.
When I do this in the controller:
include('module/simple_html_dom.php');
or
...
1
vote
2answers
627 views
PHP OOP, jQuery and MVC
I'm relatively new to PHP OOP and cant seem to be able to call functions in a PHP Class via a controller. My current setup is:
index.php
class.Class1.php
functions.controller.php
script.js
Within ...
1
vote
4answers
122 views
PHP: including 2 same php files in 1 page
i have a code
<div class="b4_content">
<div class="col_left3 FloatLeft">
<h3>Clients / Projects</h3>
<div id="left_menu" class="left_menu">
...




