Click here to Skip to main content
15,887,746 members
Home / Discussions / Web Development
   

Web Development

 
Questionlink to specific point in the vimeo video Pin
cp-andy23-Nov-16 6:07
cp-andy23-Nov-16 6:07 
QuestionWorking With Legacy Project Pin
MadDashCoder22-Nov-16 13:38
MadDashCoder22-Nov-16 13:38 
AnswerRe: Working With Legacy Project Pin
Nathan Minier23-Nov-16 1:03
professionalNathan Minier23-Nov-16 1:03 
QuestionHow i redirect the url by integrate G+ sign up Pin
Rahul Ris Dutta21-Nov-16 7:35
Rahul Ris Dutta21-Nov-16 7:35 
SuggestionRe: How i redirect the url by integrate G+ sign up Pin
Richard MacCutchan21-Nov-16 10:08
mveRichard MacCutchan21-Nov-16 10:08 
QuestionDynamic <select> - How to? Pin
Jassim Rahma21-Nov-16 0:35
Jassim Rahma21-Nov-16 0:35 
AnswerRe: Dynamic <select> - How to? Pin
Afzaal Ahmad Zeeshan23-Nov-16 8:32
professionalAfzaal Ahmad Zeeshan23-Nov-16 8:32 
GeneralRe: Dynamic <select> - How to? Pin
Jassim Rahma2-Dec-16 10:51
Jassim Rahma2-Dec-16 10:51 
I tried below code but getting:

SELECT is not an array

although my html output is showing correct result like this:
HTML
<tr>
    <td style="padding: 10px;">
        <h1>Work Performance</h1>
        <p>Efficient execution of duties.</p>
        <select name="cboRating[4613]" id="cboRating[4613]" data-native-menu="false" required>
            <option value="">[Select..]</option>
                        <option value="1">Outstanding</option>
                        <option value="2">Exceeds Expectations</option>
                        <option value="3">Meets Expectations</option>
                        <option value="4">Needs Improvement</option>
                        <option value="5">Unsatisfactory</option>
                    </select>
    </td>
</tr>
<tr>
    <td style="padding: 10px;">
        <h1>Technical Knowledge and Skill</h1>
        <p>Mastery of job knowledge and skills required to perform the duties of the position.</p>
        <select name="cboRating[4614]" id="cboRating[4614]" data-native-menu="false" required>
            <option value="">[Select..]</option>
                        <option value="1">Outstanding</option>
                        <option value="2">Exceeds Expectations</option>
                        <option value="3">Meets Expectations</option>
                        <option value="4">Needs Improvement</option>
                        <option value="5">Unsatisfactory</option>
                    </select>
    </td>
</tr>

here is my code:
PHP
if (is_array( $_POST['cboRating']))
{
    foreach($_POST['cboRating'] as $key=>$value)
    {
        echo "Key : " . $key . "<br><br>";
        echo "value : " . $value . "<br><br>";
    }
}
else
{
    echo "SELECT is not an array";
}

Technology News @ www.JassimRahma.com

QuestionHosting SignalR In IIS Pin
Kevin Marois20-Nov-16 17:29
professionalKevin Marois20-Nov-16 17:29 
QuestionAccess mobile sms on pc in c# Pin
Member 912444117-Nov-16 23:25
Member 912444117-Nov-16 23:25 
AnswerRe: Access mobile sms on pc in c# Pin
Afzaal Ahmad Zeeshan20-Nov-16 23:06
professionalAfzaal Ahmad Zeeshan20-Nov-16 23:06 
QuestionHOW TO CODE CPK Chart in vb.asp.net Pin
BHARAT NAVINCHANDRA PATEL11-Nov-16 20:01
BHARAT NAVINCHANDRA PATEL11-Nov-16 20:01 
AnswerRe: HOW TO CODE CPK Chart in vb.asp.net Pin
ZurdoDev16-Nov-16 1:08
professionalZurdoDev16-Nov-16 1:08 
QuestionHow to trigger on change on a HTML5 var tag? Pin
Nicky Tse11-Nov-16 2:26
Nicky Tse11-Nov-16 2:26 
AnswerRe: How to trigger on change on a HTML5 var tag? Pin
Richard Deeming11-Nov-16 3:20
mveRichard Deeming11-Nov-16 3:20 
GeneralRe: How to trigger on change on a HTML5 var tag? Pin
Nicky Tse11-Nov-16 3:31
Nicky Tse11-Nov-16 3:31 
GeneralRe: How to trigger on change on a HTML5 var tag? Pin
Richard Deeming11-Nov-16 3:39
mveRichard Deeming11-Nov-16 3:39 
QuestionHow to parse the excel sheet using javascript and do the rest service Pin
Member 128302459-Nov-16 2:16
Member 128302459-Nov-16 2:16 
AnswerRe: How to parse the excel sheet using javascript and do the rest service Pin
Richard MacCutchan9-Nov-16 2:25
mveRichard MacCutchan9-Nov-16 2:25 
QuestionAngular 2 Grid Pin
Member 127933317-Nov-16 21:58
Member 127933317-Nov-16 21:58 
AnswerRe: Angular 2 Grid Pin
Anurag Gandhi13-Nov-16 6:00
professionalAnurag Gandhi13-Nov-16 6:00 
Questionproblem to proj(html.css) Pin
Member 128357006-Nov-16 10:40
Member 128357006-Nov-16 10:40 
AnswerRe: problem to proj(html.css) Pin
Anurag Gandhi13-Nov-16 6:01
professionalAnurag Gandhi13-Nov-16 6:01 
Questionhtml print on separate pages of pdf or word document Pin
dcof2-Nov-16 8:28
dcof2-Nov-16 8:28 
Questionhow to integrate razor with angular 2 ngModel ? Pin
Ay Sy30-Oct-16 5:16
Ay Sy30-Oct-16 5:16 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.