Posts
 
Reputation
Loading chart. Please wait.
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
2
Posts with Upvotes
1
Upvoting Members
2
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
Ranked #55.0K
Ranked #4K
~2K People Reached
Favorite Forums
Favorite Tags

3 Posted Topics

Member Avatar for arun_22

If javascript grabs the response as a comma separated string, sResponse, you do a arArray = sResponse.split(",") arArray is an array. So now you create your Select dropdown with each arArray[] element. If you have a variable number of dropdown elements, you will have to for-loop through the array while …

Member Avatar for diafol
0
179
Member Avatar for Stefce

Try hard coding a value into Line 33. It looks like the variable $voteModel might not be interpreted. In line 31, $voteModel = $_POST["vote_".$ID]; shouldn't that be $voteModel ="vote_".$_POST[$ID]; ?

Member Avatar for Stefce
0
1K
Member Avatar for SimonIoa

It looks like Chrome does not automatically create the object "uploadUid", and you have to use the function GetElementbyID, as in var myObj=document.getElementbyID("upLoadUid"); : : : formData.append('uploadUid', myObj.value);

Member Avatar for SimonIoa
0
354