Radio button Group to insert to database

[left]Hi, i am trying to insert my form to database but my radio buttons are creating the problems. Basically, i have 2 radio button sections (specialization and skillsets) and skillsets’ value will taken according to the specialization. When inserting to the database, “array” word will be shown in specialization column and nothing is shown in skillsets column. I have no idea where i am getting wrong at but i suspect it has something to do with declaring my skillsets inside my specialization brackets. Here is my code-
PHP Code:

[code][php]

<?php // form action goes here $addProfileForm = htmlentities($_SERVER['PHP_SELF']); // start of database dependent code try{ //check all $_POST //echo '
';
//
//print_r($_POST);
//
//echo '
';

// assuming that both the get method/display code (form) and form processing need a database connection (needed for all the queries)
    require('Connections/database.php'); 
    // check for post method form processing
    if ($_SERVER['REQUEST_METHOD'] == 'POST') {
		// array to hold errors
        $errors = array(); 
		// copy and trim all post data  
		$data= array();//array_map('trim',$_POST); 
		array_walk_recursive($data,'trim'); 	
 
        // addprofileform form processing code -
        //check if there is an existing record in DB
        $query = "SELECT COUNT(*) FROM userProfile WHERE  user_id in  (
        select id from users  where id =  ".($_SESSION['user_id']).")";
		//var_dump($query);
        $stmt = $database->query($query);
        $number_of_rows = $stmt->fetchColumn();
        if ($number_of_rows > 0) {
            $errors[] = "There is an existing record. You cannot insert another profile! Either update the old one, or delete to insert again.";
        }
 
        // if no errors at this point, continue with validation
        if(empty($errors)){ 
       // all your form field validation code would go here, using elements in the $data array (a trimmed copy of the $_POST data)
 //validate here after declaring them
		 
		 $data['specialization'] = $_POST['specialization'];
		 $data['ISGrp1'] = $_POST['ISgrp1'];
		 $data['ISGrp2'] = $_POST['ISgrp2'];
		 $data['ISGrp3'] = $_POST['ISgrp3'];
		 $data['ISGrp4'] = $_POST['ISgrp4'];
		 $data['ISGrp5'] = $_POST['ISgrp5'];
		 $data['IMGrp1'] = $_POST['IMgrp1'];
		 $data['IMGrp2'] = $_POST['IMgrp2'];
		 $data['IMGrp3'] = $_POST['IMgrp3'];
		 $data['IMGrp4'] = $_POST['IMgrp4'];
		 $data['IMGrp5'] = $_POST['IMgrp5'];
		 $data['CNETGrp1'] = $_POST['CNETgrp1'];
		 $data['CNETGrp2'] = $_POST['CNETgrp2'];
		 $data['CNETGrp3'] = $_POST['CNETgrp3'];
		 $data['CNETGrp4'] = $_POST['CNETgrp4'];
		 $data['CNETGrp5'] = $_POST['CNETgrp5'];
		 $data['ITSMGrp1'] = $_POST['ITSMgrp1'];
		 $data['ITSMGrp2'] = $_POST['ITSMgrp2'];
		 $data['ITSMGrp3'] = $_POST['ITSMgrp3'];
		 $data['ITSMGrp4'] = $_POST['ITSMgrp4'];
		 $data['ITSMGrp5'] = $_POST['ITSMgrp5'];

		 $skillset = "";
	 
	if (isset($data['specialization']) && $data['specialization'] == 'Specialization_1') {
		$data['specialization'] = "IS";
		 $skillset = ($data['ISgrp1'].",".$data['ISgrp2'].",".$data['ISgrp3'].",".$data['ISgrp4'].",".$data['ISgrp5']);
	}
	if (isset($data['specialization']) && $data['specialization'] == 'Specialization_2') {
		 $data['specialization'] = "IM";
		 $skillset = ($data['IMgrp1'].",".$data['IMgrp2'].",".$data['IMgrp3'].",".$data['IMgrp4'].",".$data['IMgrp5']);
	}
	if (isset($data['specialization']) && $data['specialization'] == 'Specialization_3') {
		 $data['specialization']= "CNET";
		 $skillset = ($data['CNETgrp1'].",".$data['CNETgrp2'].",".$data['CNETgrp3'].",".$data['CNETgrp4'].",".$data['CNETgrp5']);
	}
	if (isset($data['specialization']) && $data['specialization'] == 'Specialization_4') {
		 $data['specialization'] = "ITSM";
		 $skillset = ($data['ITSMgrp1'].",".$data['ITSMgrp2'].",".$data['ITSMgrp3'].",".$data['ITSMgrp4'].",".$data['ITSMgrp5']);
	}
        }
               //Because, it's in  array? either serialize or this o.o
		json_encode($data);
        // done with validation, if no errors, use the data -
        if(empty($errors)){
            // your code to insert the data and move the uploaded file would go here...
			$stmt = $database->prepare("INSERT INTO userProfile (username, Name, introduction, Specialization,skillset, Email, ContactNo, user_Id) VALUES 
	  (:username, :Name,:introduction,:Specialization,:skillset,:Email,:ContactNo, :user_Id)");
//$stmt->bindValue(':picName',$_FILES['image']['name']);
//$stmt->bindValue(':picPath', $imgDir);
$stmt->bindValue(':username',$data['username']);
$stmt->bindValue(':Name', $data['name']);
$stmt->bindValue(':introduction',$data['introduction']);
$stmt->bindValue(':Specialization',$data['specialization']);
$stmt->bindValue(':skillset', $skillset);
$stmt->bindValue(':Email',$data['email']);
$stmt->bindValue(':ContactNo',$data['contactNo']);
$stmt->bindValue(':user_Id',$_SESSION['user_id']);
$stmt->execute();

        }
        // if no errors at this point, redirect to the exact same url of this page to prevent the browser from resubmitting the data by causing a get request for the page
        if(empty($errors)){
            $host = $_SERVER['HTTP_HOST'];
            $uri = $_SERVER['REQUEST_URI'];
            header("Location:addProfile.php?success=1");
            exit;
        }
        // if there were errors in any of the above form processing code, continue on this page, displaying any errors, redisplay form, (re)populate the form fields with data...
		 foreach($errors as $error)
    {
        printf("
  • %s
  • ", $error); //exit(); } } // end of post method form processing // get method/display code (if any) - get/produce data that's needed to display the page // to edit existing data, if the $data array is empty at this point, retrieve any existing data from the database table } catch(PDOException $e){ // end of database dependent code, handle any errors $status = empty($query) ? 'Connection failed':" Query failed: $query"; // application message trigger_error("$status, Error: {$e->getMessage()}, File: {$e->getFile()}, Line: {$e->getLine()}"); // user message $errors[] = 'Sorry, this page is not working at this time.'; } // done with the database, destroy any pdostatment resource and close connection $stmt = null; $database = null; ?>

    [/php][/code]

    My html Form:

          <!--For the form and other contents-->
          <form action="<?php $addProfileForm ?>" method="post" enctype="multipart/form-data" name="addingProfile">
            <fieldset>
              <legend>Add Profile</legend>
              <table width="auto" height="auto" border="0">
                <tr>
                  <th scope="row"><div align="left">Specialization:</div></th>
                  <div>
                    <td><table width="auto">
                        <tr>
                          <td><input name="specialization[]" type="radio" id="specialization_1" value="IS" checked="CHECKED">
                            IS</td>
                          <td><input type="radio" name="specialization[]" value="IM" id="specialization_2">
                            IM</td>
                        </tr>
                        <tr>
                          <td><input type="radio" name="specialization[]" value="CNET" id="specialization_3">
                            CNET</td>
                          <td><input type="radio" name="specialization[]" value="ITSM" id="specialization_4">
                            ITSM</td>
                        </tr>
                      </table></td>
                  </div>
                </tr>
                <tr>
                  <td colspan="7" align="left"><p><strong>Skillset:<br>
                      Please rank the skillset below..<br>
                      (5- expert, 3- average , 0-not applicable)</strong></p></td>
                </tr>
                
                  <th height="auto" colspan="2" scope="row"><table width="auto">
                      <tr id="ISrow1">
                        <td width="auto"><div align="left">C#</div></td>
                        <td width="auto"><label>
                            <input name="ISgrp1[]" type="radio" id="IS_table_1" value="C#-0" checked="CHECKED" >
                            0</label></td>
                        <td width="auto"><label>
                            <input type="radio" name="ISgrp1[]" value="C#-1" id="IS_table_2">
                            1</label></td>
                        <td width="auto"><label>
                            <input type="radio" name="ISgrp1[]" value="C#-2" id="IS_table_3">
                            2</label>
                          <label></label></td>
                        <td width="auto"><label>
                            <input type="radio" name="ISgrp1[]" value="C#-3" id="IS_table_4">
                            3</label></td>
                        <td width="auto"><label>
                            <input type="radio" name="ISgrp1[]" value="C#-4" id="IS_table_5">
                            4</label></td>
                        <td width="auto"><label>
                            <input type="radio" name="ISgrp1[]" value="C#-5" id="IS_table_6">
                            5</label></td>
                      </tr>
                      <tr id="ISrow2">
                        <td><div align="left">PHP/SQL</div></td>
                        <td><label>
                            <input name="ISgrp2[]" type="radio" id="IS_table_7" value="PHP/SQL-0" checked="CHECKED">
                            0</label></td>
                        <td><input type="radio" name="ISgrp2[]" value="PHP/SQL-1" id="IS_table_8">
                          1</td>
                        <td><label>
                            <input type="radio" name="ISgrp2[]" value="PHP/SQL-2" id="IS_table_9">
                            2</label></td>
                        <td><label>
                            <input type="radio" name="ISgrp2[]" value="PHP/SQL-3" id="IS_table_10">
                            3</label></td>
                        <td><label>
                            <input type="radio" name="ISgrp2[]" value="PHP/SQL-4" id="IS_table_11">
                            4</label></td>
                        <td><label>
                            <input type="radio" name="ISgrp2[]" value="PHP/SQL-5" id="IS_table_12">
                            5</label></td>
                      </tr>
                      <tr id="ISrow3">
                        <td><div align="left">HTML/CSS</div></td>
                        <td><label>
                            <input name="ISgrp3[]" type="radio" id="IS_table_13" value="HTML/CSS-0" checked="CHECKED">
                            0</label></td>
                        <td><input type="radio" name="ISgrp3[]" value="HTML/CSS-1" id="IS_table_14">
                          1</td>
                        <td><label>
                            <input type="radio" name="ISgrp3[]" value="HTML/CSS-2" id="IS_table_15">
                            2</label></td>
                        <td><label>
                            <input type="radio" name="ISgrp3[]" value="HTML/CSS-3" id="IS_table_16">
                            3</label></td>
                        <td><label>
                            <input type="radio" name="ISgrp3[]" value="HTML/CSS-4" id="IS_table_17">
                            4</label></td>
                        <td><input type="radio" name="ISgrp3[]" value="HTML/CSS-5" id="IS_table_18">
                          5</td>
                      </tr>
                      <tr id="ISrow4">
                        <td><div align="left">Java Enterprise Development</div></td>
                        <td><label>
                            <input name="ISgrp4[]" type="radio" id="IS_table_19" value="Java Enterprise Development-0" checked="CHECKED">
                            0</label></td>
                        <td><label>
                            <input type="radio" name="ISgrp4[]" value="Java Enterprise Development-1" id="IS_table_20">
                            1</label></td>
                        <td><input type="radio" name="ISgrp4[]" value="Java Enterprise Development-2" id="IS_table_21">
                          2</td>
                        <td><label>
                            <input type="radio" name="ISgrp4[]" value="Java Enterprise Development-3" id="IS_table_22">
                            3</label></td>
                        <td><label>
                            <input type="radio" name="ISgrp4[]" value="Java Enterprise Development-4" id="IS_table_23">
                            4</label></td>
                        <td><input type="radio" name="ISgrp4[]" value="Java Enterprise Development-5" id="IS_table_24">
                          5</td>
                      </tr>
                      <tr id="ISrow5">
                        <td><div align="left">Mobile Application Development</div></td>
                        <td><label>
                            <input name="ISgrp5[]" type="radio" id="IS_table_25" value="Mobile Application Development-0" checked="CHECKED">
                            0</label></td>
                        <td><label>
                            <input type="radio" name="ISgrp5[]" value="Mobile Application Development-1" id="IS_table_26">
                            1</label></td>
                        <td><input type="radio" name="ISgrp5[]" value="Mobile Application Development-2" id="IS_table_27">
                          2</td>
                        <td><label>
                            <input type="radio" name="ISgrp5[]" value="Mobile Application Development-3" id="IS_table_28">
                            3</label></td>
                        <td><label>
                            <input type="radio" name="ISgrp5[]" value="Mobile Application Development-4" id="IS_table_29">
                            4</label></td>
                        <td><input type="radio" name="ISgrp5[]" value="Mobile Application Development-5" id="IS_table_30">
                          5</td>
                      </tr>
                      <tr id="IMrow1">
                        <td><div align="left">Web Design</div></td>
                        <td><label>
                            <input name="IMgrp1[]" type="radio" id="IM_table_1" value="Web Design-0" checked="CHECKED">
                            0</label></td>
                        <td><label>
                            <input type="radio" name="IMgrp1[]" value="Web Design-1" id="IM_table_2">
                            1</label></td>
                        <td><label>
                            <input type="radio" name="IMgrp1[]" value="Web Design-2" id="IM_table_3">
                            2</label></td>
                        <td><label>
                            <input type="radio" name="IMgrp1[]" value="Web Design-3" id="IM_table_4">
                            3</label></td>
                        <td><label>
                            <input type="radio" name="IMgrp1[]" value="Web Design-4" id="IM_table_5">
                            4</label></td>
                        <td><label>
                            <input type="radio" name="IMgrp1[]" value="Web Design-5" id="IM_table_6">
                            5</label></td>
                      </tr>
                      <tr id="IMrow2">
                        <td><div align="left">3D Modelling &amp; Animations</div></td>
                        <td><label>
                            <input name="IMgrp2[]" type="radio" id="IM_table_7" value="3D Modelling & Animations-0" checked="CHECKED">
                            0</label></td>
                        <td><label>
                            <input type="radio" name="IMgrp2[]" value="3D Modelling & Animations-1" id="IM_table_8">
                            1</label></td>
                        <td><label>
                            <input type="radio" name="IMgrp2[]" value="3D Modelling & Animations-2" id="IM_table_9">
                            2</label></td>
                        <td><label>
                            <input type="radio" name="IMgrp2[]" value="3D Modelling & Animations-3" id="IM_table_10">
                            3</label></td>
                        <td><label>
                            <input type="radio" name="IMgrp2[]" value="3D Modelling & Animations-4" id="IM_table_11">
                            4</label></td>
                        <td><label>
                            <input type="radio" name="IMgrp2[]" value="3D Modelling & Animations-5" id="IM_table_12">
                            5</label></td>
                      </tr>
                      <tr id="IMrow3">
                        <td><div align="left">Graphic Design</div></td>
                        <td><label>
                            <input name="IMgrp3[]" type="radio" id="IM_table_13" value="Graphic Design-0" checked="CHECKED">
                            0</label></td>
                        <td><label>
                            <input type="radio" name="IMgrp3[]" value="Graphic Design-1" id="IM_table_14">
                            1</label></td>
                        <td><label>
                            <input type="radio" name="IMgrp3[]" value="Graphic Design-2" id="IM_table_15">
                            2</label></td>
                        <td><label>
                            <input type="radio" name="IMgrp3[]" value="Graphic Design-3" id="IM_table_16">
                            3</label></td>
                        <td><label>
                            <input type="radio" name="IMgrp3[]" value="Graphic Design-4" id="IM_table_17">
                            4</label></td>
                        <td><label>
                            <input type="radio" name="IMgrp3[]" value="Graphic Design-5" id="IM_table_18">
                            5</label></td>
                      </tr>
                      <tr id="IMrow4">
                        <td><div align="left">Video Editing</div></td>
                        <td><label>
                            <input name="IMgrp4[]" type="radio" id="IM_table_19" value="Video Editing-0" checked="CHECKED">
                            0</label></td>
                        <td><label>
                            <input type="radio" name="IMgrp4[]" value="Video Editing-1" id="IM_table_20">
                            1</label></td>
                        <td><label>
                            <input type="radio" name="IMgrp4[]" value="Video Editing-2" id="IM_table_21">
                            2</label></td>
                        <td><label>
                            <input type="radio" name="IMgrp4[]" value="Video Editing-3" id="IM_table_22">
                            3</label></td>
                        <td><label>
                            <input type="radio" name="IMgrp4[]" value="Video Editing-4" id="IM_table_23">
                            4</label></td>
                        <td><label>
                            <input type="radio" name="IMgrp4[]" value="Video Editing-5" id="IM_table_24">
                            5</label></td>
                      </tr>
                      <tr id="IMrow5">
                        <td><div align="left">Motion Graphics & Effects</div></td>
                        <td><label>
                            <input name="IMgrp5[]" type="radio" id="IM_table_25" value="Motion Graphics & Effects-0" checked="CHECKED">
                            0</label></td>
                        <td><label>
                            <input type="radio" name="IMgrp5[]" value="Motion Graphics & Effects-1" id="IM_table_226">
                            1</label></td>
                        <td><label>
                            <input type="radio" name="IMgrp5[]" value="Motion Graphics & Effects-2" id="IM_table_27">
                            2</label></td>
                        <td><label>
                            <input type="radio" name="IMgrp5[]" value="Motion Graphics & Effects-3" id="IM_table_28">
                            3</label></td>
                        <td><label>
                            <input type="radio" name="IMgrp5[]" value="Motion Graphics & Effects-4" id="IM_table_29">
                            4</label></td>
                        <td><label>
                            <input type="radio" name="IMgrp5[]" value="Motion Graphics & Effects5" id="IM_table_30">
                            5</label></td>
                      </tr>

    Continuation on previous reply–

      <tr id="CNETrow1">
                        <td><div align="left">Network Security</div></td>
                        <td><label>
                            <input name="CNETgrp1[]" type="radio" id="CNET_table_1" value="Network Security-0" checked="CHECKED">
                            0</label></td>
                        <td><label></label>
                          <label>
                            <input type="radio" name="CNETgrp1[]" value="Network Security-1" id="CNET_table_2">
                            1</label></td>
                        <td><label></label>
                          <label>
                            <input type="radio" name="CNETgrp1[]" value="Network Security-2" id="CNET_table_3">
                            2</label></td>
                        <td><label>
                            <input type="radio" name="CNETgrp1[]" value="Network Security-3" id="CNET_table_4">
                            3</label></td>
                        <td><label>
                            <input type="radio" name="CNETgrp1[]" value="Network Security-4" id="CNET_table_5">
                            4</label></td>
                        <td><label>
                            <input type="radio" name="CNETgrp1[]" value="Network Security-5" id="CNET_table_6">
                            5</label></td>
                      </tr>
                      <tr id="CNETrow2">
                        <td><div align="left">RB Network Design & Implementation</div></td>
                        <td><label>
                            <input name="CNETgrp2[]" type="radio" id="CNET_table_7" value="RB Network Design & Implementation-0" checked="CHECKED">
                            0</label></td>
                        <td><label></label>
                          <label>
                            <input type="radio" name="CNETgrp2[]" value="RB Network Design & Implementation-1" id="CNET_table_8">
                            1</label></td>
                        <td><label></label>
                          <label>
                            <input type="radio" name="CNETgrp2[]" value="RB Network Design & Implementation-2" id="CNET_table_9">
                            2</label></td>
                        <td><label>
                            <input type="radio" name="CNETgrp2[]" value="RB Network Design & Implementation-3" id="CNET_table_10">
                            3</label></td>
                        <td><label>
                            <input type="radio" name="CNETgrp2[]" value="RB Network Design & Implementation-4" id="CNET_table_11">
                            4</label></td>
                        <td><label>
                            <input type="radio" name="CNETgrp2[]" value="RB Network Design & Implementation-5" id="CNET_table_12">
                            5</label></td>
                      </tr>
                      <tr id="CNETrow3">
                        <td><div align="left">Broadband Access & WAN</div></td>
                        <td><label>
                            <input name="CNETgrp3[]" type="radio" id="CNET_table_13" value="Broadband Access & WAN-0" checked="CHECKED">
                            0</label></td>
                        <td><label></label>
                          <label>
                            <input type="radio" name="CNETgrp3[]" value="Broadband Access & WAN-1" id="CNET_table_14">
                            1</label></td>
                        <td><label></label>
                          <label>
                            <input type="radio" name="CNETgrp3[]" value="Broadband Access & WAN-2" id="CNET_table_15">
                            2</label></td>
                        <td><label>
                            <input type="radio" name="CNETgrp3[]" value="Broadband Access & WAN-3" id="CNET_table_16">
                            3</label></td>
                        <td><label>
                            <input type="radio" name="CNETgrp3[]" value="Broadband Access & WAN-4" id="CNET_table_17">
                            4</label></td>
                        <td><label>
                            <input type="radio" name="CNETgrp3[]" value="Broadband Access & WAN-5" id="CNET_table_18">
                            5</label></td>
                      </tr>
                      <tr id="CNETrow4">
                        <td><div align="left">ICT Infrastructure Management</div></td>
                        <td><label>
                            <input name="CNETgrp4[]" type="radio" id="CNET_table_19" value="ICT Infrastructure Managementt-0" checked="CHECKED">
                            0</label></td>
                        <td><label></label>
                          <label>
                            <input type="radio" name="CNETgrp4[]" value="ICT Infrastructure Management-1" id="CNET_table_20">
                            1</label></td>
                        <td><label></label>
                          <label>
                            <input type="radio" name="CNETgrp4[]" value="ICT Infrastructure Management-2" id="CNET_table_21">
                            2</label></td>
                        <td><label>
                            <input type="radio" name="CNETgrp4[]" value="ICT Infrastructure Management-3" id="CNET_table_22">
                            3</label></td>
                        <td><label>
                            <input type="radio" name="CNETgrp4[]" value="ICT Infrastructure Management-4" id="CNET_table_23">
                            4</label></td>
                        <td><label>
                            <input type="radio" name="CNETgrp4[]" value="ICT Infrastructure Management-5" id="CNET_table_24">
                            5</label></td>
                      </tr>
                      <tr id="CNETrow5">
                        <td><div align="left">Technopreneurship Project</div></td>
                        <td><label>
                            <input name="CNETgrp5[]" type="radio" id="CNET_table_25" value="Technopreneurship Project-0" checked="CHECKED">
                            0</label></td>
                        <td><label></label>
                          <label>
                            <input type="radio" name="CNETgrp5[]" value="Technopreneurship Project-1" id="CNET_table_26">
                            1</label></td>
                        <td><label></label>
                          <label>
                            <input type="radio" name="CNETgrp5[]" value="Technopreneurship Project-2" id="CNET_table_27">
                            2</label></td>
                        <td><label>
                            <input type="radio" name="CNETgrp5[]" value="Technopreneurship Project-3" id="CNET_table_28">
                            3</label></td>
                        <td><label>
                            <input type="radio" name="CNETgrp5[]" value="Technopreneurship Project-4" id="CNET_table_29">
                            4</label></td>
                        <td><label>
                            <input type="radio" name="CNETgrp5[]" value="Technopreneurship Project-5" id="CNET_table_30">
                            5</label></td>
                      </tr>
                      <tr id="ITSMrow1">
                        <td><div align="left">Virtualisation & Cloud Computing</div></td>
                        <td height="24"><label>
                            <input name="ITSMgrp1[]" type="radio" id="ITSM_table_1" value="Virtualisation & Cloud Computing-0" checked="CHECKED">
                            0</label></td>
                        <td><label>
                            <input type="radio" name="ITSMgrp1[]" value="Virtualisation & Cloud Computing-1" id="ITSM_table_2">
                            1</label></td>
                        <td><label>
                            <input type="radio" name="ITSMgrp1[]" value="Virtualisation & Cloud Computing-2" id="ITSM_table_3">
                            2</label></td>
                        <td><label>
                            <input type="radio" name="ITSMgrp1[]" value="Virtualisation & Cloud Computing-3" id="ITSM_table_4">
                            3</label></td>
                        <td><label>
                            <input type="radio" name="ITSMgrp1[]" value="Virtualisation & Cloud Computing-4" id="ITSM_table_5">
                            4</label></td>
                        <td><input type="radio" name="ITSMgrp1[]" value="Virtualisation & Cloud Computing-5" id="ITSM_table_6">
                          5</td>
                      </tr>
                      <tr id="ITSMrow2">
                        <td><div align="left">IT Service Operation & Management </div></td>
                        <td height="24"><label>
                            <input name="ITSMgrp2[]" type="radio" id="ITSM_table_7" value="IT Service Operation & Management-0" checked="CHECKED">
                            0</label></td>
                        <td><label>
                            <input type="radio" name="ITSMgrp2[]" value="IT Service Operation & Management-1" id="ITSM_table_8">
                            1</label></td>
                        <td><label>
                            <input type="radio" name="ITSMgrp2[]" value="IT Service Operation & Management-2" id="ITSM_table_9">
                            2</label></td>
                        <td><label>
                            <input type="radio" name="ITSMgrp2[]" value="IT Service Operation & Management-3" id="ITSM_table_10">
                            3</label></td>
                        <td><label>
                            <input type="radio" name="ITSMgrp2[]" value="IT Service Operation & Management-4" id="ITSM_table_11">
                            4</label></td>
                        <td><input type="radio" name="ITSMgrp2[]" value="IT Service Operation & Management-5" id="ITSM_table_12">
                          5</td>
                      </tr>
                      <tr id="ITSMrow3">
                        <td><div align="left">Server Administration & Security</div></td>
                        <td height="24"><label>
                            <input name="ITSMgrp3[]" type="radio" id="ITSM_table_13" value="Server Administration & Security-0" checked="CHECKED">
                            0</label></td>
                        <td><label>
                            <input type="radio" name="ITSMgrp3[]" value="Server Administration & Security-1" id="ITSM_table_14">
                            1</label></td>
                        <td><label>
                            <input type="radio" name="ITSMgrp3[]" value="Server Administration & Security-2" id="ITSM_table_15">
                            2</label></td>
                        <td><label>
                            <input type="radio" name="ITSMgrp3[]" value="Server Administration & Security-3" id="ITSM_table_16">
                            3</label></td>
                        <td><label>
                            <input type="radio" name="ITSMgrp3[]" value="Server Administration & Security-4" id="ITSM_table_17">
                            4</label></td>
                        <td><input type="radio" name="ITSMgrp3[]" value="Server Administration & Security-5" id="ITSM_table_18">
                          5</td>
                      </tr>
                      <tr id="ITSMrow4">
                        <td><div align="left">Database Administration & Management</div></td>
                        <td height="24"><label>
                            <input name="ITSMgrp4[]" type="radio" id="ITSM_table_19" value="Database Administration & Management-0" checked="CHECKED">
                            0</label></td>
                        <td><label>
                            <input type="radio" name="ITSMgrp4[]" value="Database Administration & Management-1" id="ITSM_table_20">
                            1</label></td>
                        <td><label>
                            <input type="radio" name="ITSMgrp4[]" value="Database Administration & Management-2" id="ITSM_table_21">
                            2</label></td>
                        <td><label>
                            <input type="radio" name="ITSMgrp4[]" value="Database Administration & Management-3" id="ITSM_table_22">
                            3</label></td>
                        <td><label>
                            <input type="radio" name="ITSMgrp4[]" value="Database Administration & Management-4" id="ITSM_table_23">
                            4</label></td>
                        <td><input type="radio" name="ITSMgrp4[]" value="Database Administration & Management-5" id="ITSM_table_24">
                          5</td>
                      </tr>
                      <tr id="ITSMrow5">
                        <td><div align="left">Internet of Things App Development</div></td>
                        <td height="24"><label>
                            <input name="ITSMgrp5[]" type="radio" id="ITSM_table_25" value="Internet of Things AppDevelopment-0" checked="CHECKED">
                            0</label></td>
                        <td><label>
                            <input type="radio" name="ITSMgrp5[]" value="Internet of Things AppDevelopment-1" id="ITSM_table_26">
                            1</label></td>
                        <td><label>
                            <input type="radio" name="ITSMgrp5[]" value="Internet of Things AppDevelopment-2" id="ITSM_table_27">
                            2</label></td>
                        <td><label>
                            <input type="radio" name="ITSMgrp5[]" value="Internet of Things AppDevelopment-3" id="ITSM_table_28">
                            3</label></td>
                        <td><label>
                            <input type="radio" name="ITSMgrp5[]" value="Internet of Things AppDevelopment-4" id="ITSM_table_29">
                            4</label></td>
                        <td><input type="radio" name="ITSMgrp5[]" value="Internet of Things AppDevelopment-5" id="ITSM_table_30">
                          5</td>
                      </tr>
                    </table></th>
                </tr>
                <tr>
                  <th scope="row"></th>
                  <th scope="row"> <input type="submit" name="submit" id="submit" value="Submit"></th>
                </tr>
              </table>
            </fieldset>
          </form>

    I hope it makes some sense on what I’m trying to say :’( Thanks in advance for your help.[/left]

    Sponsor our Newsletter | Privacy Policy | Terms of Service