Tagged Questions

0
votes
3answers
32 views

PHP4 problems with include() within a file created by fwrite()

I have a file called generator.php where a visitor enters data into, using a browser. This generator.php file uses fwrite() to create a result.php on the server (Apache). One of t …
0
votes
5answers
108 views

C Programming: Preprocessor, include files from macro

If I could find a way to do something similar to this, I could cut out hundreds of lines of code in my application, and dramatically increase maintainability. Anyone have any ideas …
0
votes
1answer
12 views

In which include file EPERM (returned by pthread_mutex_unlock) error code is declared?

Can anyone give me the right direction for this, as I am not able to find the declaration of EPERM in either pthread.h or errno.h (on openSUSE Linux). I found this in asm-generic/e …
1
vote
7answers
43 views

php relative and absolute paths

I have read that when including a php file that using a absolute paths has a faster processing time than relative paths. What would you suggest to use? include("inlcudes/myscript …
0
votes
1answer
11 views

When querying with ‘Include’, does the EF checks if objects already exist in object state manager?

Should I avoid using Include in queries, or I can rely on the EDM that when it creates the query it excludes from the query items that already exist in the OSM?
4
votes
6answers
118 views

How do I include functions from another file in my Perl script?

Hi, This seems like a really simple question but somehow my Google-Fu failed me. What's the syntax for including functions from other files in perl? I'm looking for something li …
-2
votes
3answers
54 views

Large PHP file containing multiple pages vs Multiple PHP files with the use of session variables

What are the advantages/disadvantages of using include/require's to achieve a singular file that contains multiple pages as opposed to directing the user to many individual pages a …
0
votes
3answers
66 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 bla …
0
votes
3answers
26 views

Getting “undefined method `include?’” for request.user_agent

I've got this line of code: if request.user_agent.include?("iPhone") then But I'm occasionally getting this error: "undefined method `include?' for nil:NilClass" When checkin …
1
vote
4answers
61 views

php include path changing based on file

I'm brand new to php and I'm trying to work with some includes in my site and can't quite figure out how to make them all work correctly. My site structure is as follows /ROOT/ …
2
votes
4answers
78 views

Tell from where a .php file has been included?

Does anybody know of an automated way of telling whether a PHP script is being called directly (as a HTML page), or as a JavaScript, or as a CSS Stylesheet? Without GET variables, …
2
votes
2answers
48 views

PHP: unexpected T_VARIABLE error

Okay, I know this is a common enough question, but all the solutions I've found thus far have involved a missing semi-colon or curly brace, both of which I know is not the case for …
0
votes
3answers
36 views

SQL Server wide indexes with many include columns

Should I be careful adding too many include columns to a non-cluster index? I understand that this will prevent bookmark look-ups on fully covered queries, but the counter I ass …
0
votes
5answers
46 views

In JSP is it necessary to redeclare tag libraries in included files?

Im not really familiar with how this works in JSP but in the main.jsp template there is this: <%@ taglib uri="/WEB-INF/tld/c.tld" prefix="c" %> <jsp:include page="/jsp …
2
votes
6answers
245 views

Is including C++ source files an approved method ?

I have a large C++ file (SS.cpp) which I decided to split in smaller files so that I can navigate it without the need of aspirins. So I created SS_main.cpp SS_screen.cpp SS_disk. …

1 2 3 4 5 19 next
15 30 50 per page