0
votes
4answers
57 views
How to suppress/remove PHP session cookie
I need to suppress an already set session cookie header, but I cannot find any way to do this.
Why?
I need to make an image, sent by a PHP script, cacheable by the end user; this …
1
vote
5answers
94 views
Should javascript code always be loaded in the head of an html document?
Is there a blanket rule in terms of how javascript should be loaded. I'm seeing people saying that it should go on the end of the page now.
Thoughts?
0
votes
4answers
78 views
Is there any way to read the header codes without downloading the file at all?
import httplib
conn = httplib.HTTPConnection(head)
conn.request("HEAD",tail)
res = conn.getresponse()
print res.status
I am currently using this to get the HTTP header code …
0
votes
0answers
14 views
[jQuery UI - Accordion] Styling active header?
Hi,
Simple issue: I am using Accordion without any UI themes (just barebones, using my own CSS).
So far, so good, except that I cannot figure out how to set an "active" style for …
1
vote
3answers
58 views
Why is my page still executing?
I have a form that posts to a processing script which checks for errors in the post. Depending on the processing itheader redirects to another location. Thus appeared to work nut I …
0
votes
2answers
18 views
Datagrid - Stop event HEADER_RELEASE when push headerRenderer checkbox
Hi, i have this code in flex:
<mx:Application ... >
....
<mx:DataGrid id="filtros" styleName="grid" rowCount="10" dataProvider="{_larcFiltros}" allowMultipleSelection="tr …
1
vote
4answers
130 views
Is there a way to get a web page header/footer printed on every page?
Hello all:
Based on my research, it seems that what I want to do is not possible, but in case something has changed, I wanted to check to see if anyone had come up with a way to d …
1
vote
10answers
203 views
Splitting templated C++ classes into .hpp/.cpp files - is it possible?
g++ -c -o main.o main.cpp
g++ -c -o stack.o stack.cpp
g++ -o main main.o stack.o
main.o: In function `main':
main.cpp:(.text+0xe): undefined reference to 'stack::stack()'
main.cpp: …
1
vote
2answers
44 views
How do I redirect values from a PHP page to another?
I'm trying to post XML data from a PHP page to another (not necessarily PHP-based) one without a form post. Is it possible to say do a POST via the header() function? If so, how?
0
votes
4answers
57 views
how to tell clicking “back” to load cache?
I would like for my site when someone clicks "Back" or "Forward" for the server to tell the browser to load the cache instead of reloading the entire page. I've tested some header …
0
votes
2answers
47 views
how to stop floating (sliding) div at footer
http://stackoverflow.com/questions/225843/how-can-i-have-a-sliding-menu-div-that-doesnt-move-unless-the-page-is-scrolled-d
i used the code from this link for a floating menu. it h …
1
vote
1answer
53 views
How to make only specific text clickable on accordion header - jquery?
I added delete and edit link to the accordion header, yet those links are not working since every time i click on them the accordion open. And advice on how can I do it? Note that …
0
votes
5answers
44 views
Using PHP to print out a downloadable text file
My script puts together a set of htaccess rules based on information passed into it and gives the user a downloadable text file with the rules printed out inside. The idea is that …
0
votes
1answer
45 views
Can i reduce the font size of iphone tableview header
Hi All,
I need to reduce the font size of the table view header. My string value is a little bit longer and it doesnot fit in to the header. so planning to reduce the size. Any on …
2
votes
4answers
69 views
Can ‘make’ check if mtime of a dependency is *different* between runs, not just if it’s newer than target?
If foo_user.cpp depends on foo.h, then foo_user.cpp is built, and then foo.h's modification time is set to further in the past, make will not rebuild foo_user.cpp (because foo.cpp …
