No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
10 Posted Topics
I have the same problem and am sending no output before the session_start call. I finally created a stripped down test file and STILL get the same problem. My test file has ONLY this code: <?php $value = session_start(); echo "Session value = ".$value."<br>"; ?> As suggested in various sources: …
Not sure if this is the right place to post this. I've built a number of websites but have just now been asked to provide a password protected page that allows different customers FTP access to download files. I feel dumb. Having never done anything like this before. Obviously I …
The following code works fine in IE8 and Firefox 3.5. Any idea why it does not work in Chrome ? Tried it both in localhost and on my web server -- no success. In the header: [code = php] <?php if((isset($_COOKIE["unique_id"]))&&isset($_COOKIE["users_resolution"])){ $screen_res = $_COOKIE["users_resolution"]; $unique_id = $_COOKIE["unique_id"]; } else //means …
I got a copy from my local library. If yours does not have it, they can likely order it from some other library. Amazon has it online. However, there are SO many books in this category (good and bad) that I prefer using them a bit before I actually buy …
I'm looking to put a context-free feedback form on my site (link placed in my navbar) that would cause a small window to pop-up, allow the user to enter feedback and submit. On submit, the window would disapear and the user would remain on the page they were previously on. …
Can you either post some code or a URL ? Would make it easier for me to understand what you are describing.
Admittedly, I'm new to CSS but I am having some difficulty converting tables to CSS. Here is a CSS example for a simple 4 cell table that works fine -- but only without the DOCTYPE declaration (any DOCTYPE declaration)! Does anyone know what, if anything, I am doing wrong ? …
An extremely simple example that relies on the "title" for an anchor tag is shown below. Perhaps this can take you in the right direction. [code] <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <HTML> <HEAD> <TITLE>Help Example</TITLE> <style type="text/css"> img { border-style: none; } </style> <body> <div> <a href="#" title="A …
1) Remove the "float:right" from the sub_content div to get it to fill the width of the internal_content div. 2) Add a "float:right" to the trace_details list to get this to position properly (which you have as an ID and should change to a class as previously mentioned.) I'm assuming …
Too bad no one ever replied to this ! I am trying to solve exactly the same problem with exactly the same code. (The 2nd problem I am trying to solve is to get this fade/blend transition to work in non-IE browsers.) If you have solved your problem would you …
The End.
FeralReason