A provision that many programming languages provide to allow code (functions, classes, objects) in one file to be used in many others.

learn more… | top users | synonyms (2)

1
vote
1answer
18 views

Include an instance method from a module and then outputting a class variable that was defined in the base class

I'm attempting to include a method from a module in a class, and have the method that is included access a class variable of the base class that's doing the including, but it's not working like I ...
8
votes
4answers
24k views

Passing a variable from one php include file to another: global vs. not

I'm trying to pass a variable from one include file to another. This is NOT working unless I declare the variable as global in the second include file. However, I do NOT need to declare it as global ...
2
votes
1answer
34 views

anything faster than .include?

I'm currently working with arrays and i decided to try and speed up one of my functions with replacing and iterative search of a sorted array with .include? much to my surprise the total run time of ...
3
votes
4answers
26 views

By including this PHP file on a page, am I RUNNING all of the functions therein, or am I simply allowing them to be accessed?

I have this functions file. By doing... <?php include('functions.php'); ?> ... am I running all of the functions inside it, or am I simply allowing them to be called (making them exist in the ...
0
votes
3answers
41 views

c++, MCVS 2012, header file, vector and namespaces

I have a trouble with finding answer for my questions (Q), so I registered here to ask you guys how it really works (or don't works) ;) I am writing in c++, in Visual Studio 2012, but still don't ...
0
votes
3answers
26 views

PHP using variable in an included function

Main File; $opid=$_GET['opid']; include("etc.php"); etc.php; function getTierOne() { ... } I can use $opid variable before or after function but i can't use it in function, it returns undefined. ...
0
votes
2answers
18 views

In ASP CLASSSIC inclusions are executed before or after the statements?

let's assume we have a situation like: if session("lenguage") = "ENG" then <!--#include file="eng_page.asp"--> else <!--#include file="not_eng_page.asp"--> end if i would like to ...
0
votes
3answers
45 views

C++ proper way for solve this inheritence include issue “already has a body”?

Heyo, I have a question about this issue I am having in C++. I am new to C++ and learning. I have experience in object oriented programming so I am looking for the correct way and solve this issue and ...
2
votes
2answers
356 views

Incorporating GDAL into MSVS 2008 C++ project

I've been experimenting with GDAL in python and have had some great success in it's use for terrain analysis. My company wants to see if/how GDAL can be used in Visual Studio, as it is their primary ...
0
votes
2answers
17 views

Ruby How to display message if include? statement is true or false

I'm very new to Ruby and am attempting to display one of two messages based on whether certain words are included in an array. My current controller contains the following: @cookie = ["gluten", ...
0
votes
2answers
47 views

php include misses variables [closed]

i have a file conf.php that contains defined variables like this conf.php $var1='some value'; $var2='some value'; $var3='some value'; i include this file within a function in another file like ...
2
votes
5answers
991 views

XSLT conditional include of external file

I want to perform a conditional include in XSLT, but xsl:include is a top level element. You can only use xsl:if or xsl:choose inside of a template. Is there any kind of hack or work around which ...
0
votes
0answers
13 views

Css works not on blackberry 10 with a wordpress site

i set up a wordpress website and it works fine on all browsers and all mobile devices except on the blackberry 10,the style.css is located in the theme and i include it with the following code: ...
1
vote
0answers
74 views
+100

Java variable across multiple include blocks - variable cannot be resolved

I have jsp page that looks something like this: MyPage.jsp <%@ include file = "/Title.jsp" %> <%@ include file = "/Header.jsp" %> <html>...</html> In Title.jsp there is a ...
0
votes
1answer
24 views

Dynamically include XML files using XSLT

I am trying to merge multiple XML files into one in the following manner: Say I have an XML file, called fruit.xml: <fruit> <apples> <include ref="apples.xml" /> ...
4
votes
4answers
348 views

Do you know tool building tree of include files in project\file?

Say, I'd like to have a tool (or script?) taking project (or .h file) and building searchable tree of "includes" included into it (of included into of included into and so so on). Is there exist ...
0
votes
1answer
483 views

PHP Include() - Header and Footer

I use php include() for my header, footer, navigation etc. I have the following code repeated on each of my pages <?php include 'includes/header.php'; ?> Is there a faster way to do ...
0
votes
0answers
12 views

Caching parts of webpage using Memcached

I am trying to cache the code for my header which is: $cachedHeader = $this->cache->get('header'); if(!$cachedHeader) { include Vs . "header.php"; $header = file_get_contents(Vs . ...
1
vote
2answers
28 views

Trying to include a file, file_exists is essential?

Sorry for possiblely reduplicate asking. But it's hard to use this confusable keyword to search a answer. So here is scenario: I try to get a advise to make my simple autoloader. Here is i made so ...
0
votes
1answer
31 views

Is including unused JavaScript files a bad practice? [closed]

I use jQuery in lots of websites, for obvious reasons. So I simply include it in a header.php file. I also include other JavaScript libraries so in the end I get something like this: <script ...
0
votes
0answers
6 views

Eclipse CDT - How to map some path to another path?

I check out one directory from our project to F:\project\display. However, in the project display is located under app/service/display relative to the project root. We use full path include in the ...
0
votes
0answers
9 views

missing wordpress data in custom child theme

Here's my problem: Certain wordpress driven dynamic information is missing from the single post pages when I view a post article. This includes the recent posts, side menu and the author information. ...
0
votes
2answers
30 views

Store last folder name in path to a variable in PHP

I have a php script call "functions.php" that is executed both by itself and by other scripts placed in other folders. I therefore encounter a problem with the code where it tries to include the ...
3
votes
2answers
55 views

C++ function declarations

I'm a newbie to C++. I don't understand why it is okay (i.e. why the compiler allows it) for 1 function to be declared twice. For example, the following code is legal: #include <iostream> ...
0
votes
0answers
42 views

Undefined reference to the function

It seems that I can't compile my project because of some linking error, but I can't find it. I have a parser class where methods from a scanner class are used. And complier marks every entry of any ...
-1
votes
1answer
28 views

nested tag such as {% include “{% static 'some.html' %}” %}

{% load staticfiles %} {% include "{% static 'some.js' %}" %} Having trouble making it work. What's the proper syntax here? Edit. I'm trying to include a *.js file here actually. Does it make ...
0
votes
0answers
10 views

include array table from file (Symbole could not be resolved)

I use gcc and eclipse jumo with Android IDE v21.: in main I have table: char t[] = {1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20}; and call this table: ...
0
votes
2answers
28 views

requiring php config classes, but file not found

In my opinion I'm requiring all necessary files but I keep getting the error that one file is not found. All files are in the same folder. This is my code for zConfig.php: <?php class zConfig { ...
0
votes
0answers
18 views

setError() doesnt work on EditText from merged layout using <include layout=“@layout/address_from_merge” />

I m creating signup activity, & in its layout i m "merging address_from_merge"-layout, but at run time setError() doesnt get work on any EditText from merged layout,i.e. doesn't get validated ...
1
vote
2answers
38 views

Including config file in PHP

I am developing a project where I am not able to include the files. My Folder Structure: --Myproject -----Config ----------config.php -----Includes ----------Images ---------------image.jpg ...
0
votes
1answer
20 views

Superclass of cpp object included in .cc file not header file

I've downloaded a toolkit (namely IRTK from Imperial college) and I have compiled and installed it using CMake. As part of the installation it has copied all of the relevant header files into ...
0
votes
1answer
45 views

Railo 4 MissingInclude

I am running Windows 2008 R2 with Railo 4. I am having a problem with Railo 4 not seeing the virtual directories defined in IIS. I know that in ColdFusion 8, I just define the virtual directory in ...
3
votes
8answers
3k views

PHP exit() from within included script, exit parent script?

In PHP, if I use the include() or require() functions to start running code in another script, is there a way to terminate the parent script from within the child? So say I have this in parent.php: ...
0
votes
2answers
46 views

Include php file with html via js include

Ok so I am tasked to work with this third party vendor that shows movie times on their end. We have the chance to co-brand our site on their end, so in order to do that we need to create a wrapper of ...
0
votes
1answer
22 views

Include vs Extend for data access

This is a design question that has irked me because deep down I know I'm doing it wrong. This is not necessarily just a PHP problem, but I'm working on a PHP project now so that's where I'm coming ...
0
votes
0answers
16 views

Is there a better way than PHP include()

My sites include large segments of data via php's include(). This has worked well but I'm building a CMS and ran into an issue... When I load the page to be edited, the included file doesn't print. ...
0
votes
0answers
31 views

How to recursively add include and link directories to visual studio 2012 after installing a new c++ library?

I have read that this option could be specified in a cMakeList.txt however I have already built the library and looking for a post install cMake script to do the job.
0
votes
1answer
17 views

Call result controller/view in anoter view

I try to call controller/view in another view. I have a homepage Default:index using a block view of my controller Event and I want to put this block.html.twig in my folder of my controller. In my ...
0
votes
1answer
16 views

node.js - include .js files within socket.on('connection') method

Is it possible to include files like this? I need write a lot of code and it could help me with clarity. P.S. Sorry for my English ;) io.sockets.on('connection', function(client) { // include ...
1
vote
2answers
70 views

How many nested projections can be used with .Include()?

How many nested projections can be used with .Include() in the Entity Framework? For example: Class A has a List of Class B's, which has a list of Class C's, which has a list of Class D's, etc. ...
0
votes
0answers
30 views

Make a Page Pull Different PHP elements based on Browser language

Im trying to figure out a basic multi-language solution for a rather convoluted search engine website architecture and I was wondering if it was possible to have the main search result page templates, ...
103
votes
1answer
32k views

ASP.Net MVC 3 Razor: Include js file in Head tag

I'm trying to figure out the proper razor syntax to get a js file for a particular *.cshtml to be in the head tag along with all the other include files that are defined in _Layout.cshtml Thank you, ...
0
votes
0answers
25 views

Entity framework - Issue when using include in Oracle

I have a problem in Entity Framework using Oracle. I get the error ORA-01792: maximum number of columns in a table or view is 1000. The particular Linq which throws the error has 5 Include. when ...
2
votes
6answers
63 views

C++ How to include class headers without having to compile their cpp files?

We can include < iostream > and we do not care about its cpp file, but why can't we do the same for our own classes ? So if my project uses 50 custom classes, not only do I have to have 50 ...
0
votes
6answers
46 views

How to import all classes within filesystem in php?

The folder structure is like so: /main.php /lib/class1.php /lib/class2.php /lib/class3.php I want to have main.php make available all the classes in lib without doing a ton of ...
0
votes
1answer
21 views

Call-time pass-by-reference has been deprecated in include()

I moved my website from one server to another. Everything runs, but since I have the new server, the logs Deprecated function: Call-time pass-by-reference has been deprecated in include() (line 6 ...
0
votes
0answers
39 views

Include linkage issues g++ Debian

I'm having some issues with the include linkage with g++ Here is the compilation line : g++ main.cpp -I./libgdl_gl/include/ My main.cpp is in the same directory as the folder libgdl_gl, and this ...
0
votes
2answers
41 views

__DIR__ and autoloading php

I don't know if this is exactly a problem in autoloading, but I am having this problem, here is my code: index.php require __DIR__ . '/app/autoload.php'; Folder structure: index.php app/ ...
6
votes
3answers
13k views

How to include sub-directories in Visual Studio?

I have to include many header files, which are in different sub-directories. Is there a way in Visual Studio (I am using 2005 edition) to set one include path that Visual Studio will search also the ...
0
votes
1answer
163 views

AdMob error at running app

This is a java code: package h.a.s.i; import com.google.ads.AdRequest; import com.google.ads.AdSize; import com.google.ads.AdView; //and next public class about extends ...

1 2 3 4 5 79