I have been unable to figure out how to use the code you supplied in my form. I understand why an array has to be created and looped through though. I have seven radio options called "option". I...
else if (!f.option.checked) // not empty
{
// something is wrong
alert('You must select a reason for leaving');
return false;
}
in my code and test it with...
I already have a form that validates all the fields I want via javascript but I cannot figure out how to validate the radio buttons. How can I check that an option has been selected?
Well, I just noticed you provided the soduko puzzle solver. I checked the source and looked to see how the javascript was utilized. It appears to be very similar to mine. My problem is that I can...
Thank you for your reply and post reference. I don't have a high enough understanding of javascript to understand how to utilize the example you provided. Do you have any quick tips about the parts...
I'm trying to get my form to show and hide various divs with radio buttons. There are multiple options in the second box of my example. When a user selects the first option, more input...
The designer[i] would be listing out the array that I created from the database information. i is set to be 0 in the for loop and will increment by 1 each time the script loops. It would loop until...
I am still learning PHP and want to make sure I have the correct thought process on solving this problem before I proceed with trying to code it. I want to take this code:
I am trying to generate an email to a user in a database. The database has the user's username as a column called "user" and their email address in a column called "email". When I submit a form, I...
I want to have a page on my website have a live stream of the data that is being put into my database. I think javascript would be the way to go for this but I'm not 100% sure.
I want to have a page on my website have a live stream of the data that is being put into my database. I think javascript would be the way to go for this but I'm not 100% sure.
alright! I found a way to do this that fits my needs perfectly. Subsonic is excellent and can send music info to last.fm. Check it out if you're interested at subsonic.org
I have a tower running Ubuntu. I want to put my music library on it and be able to access it on demand online from any computer. Do any of you have any input/experience on this?
I now understand the process. The thing is, I've been using this project management system I wrote in our office for some time now without problems and just today decided to add the delete project...
I know I'm connected to the database because my "edit" function allows me to edit the different fields for each project. I may be wrong since I have a basic understanding of PHP but I believe I am...