It should make no difference what the file extension is. In cases where the problem is not forthcoming, I like to isolate the code in question and test it externally. Try copying just the code you...
It may be a long shot, but I've had issues with submit buttons in the past where I've given the name, type, id and other attributes the same name (all "submit") and the functionality of the button...
Sorry about that. I was in a rush to leave for work when I tested your code and didn't copy & paste it properly. Consider my first message void. Upon further inspection, I actually don't...
Your HTML is wrong. Your form element had no closing tag, neither did the fieldset or the container div. I've taken the liberty of correcting the errors and your code worked in my test:
I've managed to get the sessions working properly again by asking the host to provide a new php.ini file for the server. However, this has not fixed the broken include path problem.
The include path doesn't seem to be an issue here. I've verified with the host that PEAR is installed, yet this problem persists. I've also tried using the session_write_close()...
You didn't say that in the OP, you talked about copying from drop-down lists. Anyway, I'm not going to incorporate anything into the code you've supplied because I don't know how it's interacting...
Problem fixed. Error was a simple misuse of the insertBefore() function. The second parameter referenceElement is required to be a node, not simply an ID. The resolution:
At the click of a button I want to insert an element BEFORE the currently selected element. I handle "selected" by storing the last clicked element ID in a variable.
You'll want to familiarise yourself with the JavaScript console for debugging, as this will be where all your error messages and warnings are displayed. In Internet Explorer (version 9), press F12....
If you want to pay a person or company for services, that is at your discretion. Beware of sending money via PayPal to random faceless people for so-called services. I would not advise this for a...
If I could chime in here; please don't pay anyone to solve this minor problem for you. There will be many more to come, much more difficult than this. You'll end up bankrupting yourself!
Works fine in all browsers. Are you using IE9 with compatibility view turned on? The little torn page icon next to the refresh button is what I'm talking about. If it's...
If I understand the first question right, you are required to create a table within a loop by dynamically manipulating the DOM (document object model). To do this you need to use the createElement()...
With respect to adding a line break every 2 words, you could write a simple solution which increments a counter by 1 each time a space is encountered, and just add a line break to the string after...