- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
still discovering
4 Posted Topics
I've been a discussion reader of daniweb and have found all of the thread I've seen here very helpful. Finally I got myself an account to know more about web development and to help others as well. :) | |
Re: Replace $_GET with $_POST in `$recordID = $_GET['recordID'];` since you use the method POST and placed the control that holds the value of recordID inside that form or else it will not pass any value to the variable $recordID. This is the reason why your update doesn't work in your … | |
Re: you can try this too: var x=document.getElementById("input").value.length; if (x >= 8) { alert("Text must be lower than 8 letters") return false; } | |
![]() | Re: For the radio buttons and dropdown list you can do the same thing you did for "text" inputs. Simply put a "name" attribute value in each radio button(all radio buttons must have an identical "name"). While put a "name" attribute value only inside <select> tag for dropdown list. Lastly for … |
The End.