Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
Ranked #4K
~1K People Reached
About Me

still discovering

Favorite Forums
Favorite Tags

4 Posted Topics

Member Avatar for rholdbataller

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. :)

Member Avatar for oasisofhealing
0
58
Member Avatar for Amicallef1991

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 …

Member Avatar for Amicallef1991
0
615
Member Avatar for Kullercode

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; }

Member Avatar for rholdbataller
0
178
Member Avatar for Zaina jee

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 …

Member Avatar for rholdbataller
0
225

The End.