Exemplo n.º 1
0
        </div>
       <div class='form-group'>
        <label class='control-label col-md-2 col-md-offset-2' for="phone">Phone: </label>
         <div class='col-md-2' >
             <input class="form-control" type="text" name="phone" id="phone" size="30" maxlength="15" width="7%" onchange="changeTest(this.form)" />
         </div>
         <div class='col-md-2' >
         <img src="../common/question_mark.jpg" alt="?" height="20" width="20" data-placement="right" data-toggle="tooltip" title="Ayelet- if you want change here an include only Letters and digits">        
         </div>
         </div>
       <div class='form-group'>
        <label class='control-label col-md-2 col-md-offset-2' for="role">Role: </label>
         <div class='col-md-2' >
             <?php 
 include_once '../helpers/getEnumValuesFromTable.php';
 echo enumDropdown('users', __users_tl_role);
 ?>
           
         </div>
         <div class='col-md-2' >
         <img src="../common/question_mark.jpg" alt="?" height="20" width="20" data-placement="right" data-toggle="tooltip" title="Ayelet- if you want change here an include only Letters and digits">        
         </div>
        </div>                
       <div class='form-group'>
        <label class='control-label col-md-2 col-md-offset-2' for="account">Account: </label>
         <div class='col-md-2' >
         <?php 
 include_once '../helpers/getDropDownListFromTableData.php';
 echo dataDropdown('clusters', __cluster_tl_account_name);
 ?>
             </div>
Exemplo n.º 2
0
if (isset($_POST['phone'])) {
    echo $_POST['phone'];
}
?>
" /></td>
					<td><span class="error"> <?php 
echo $phoneErr;
?>
</span></td>
				</tr>
				<tr>
					<td><label for="role">Role: </label></td>
					<td>
						<?php 
include_once 'helpers/getEnumValuesFromTable.php';
echo enumDropdown('users', 'Role');
?>
					</td>
					<td><span class="error"> <?php 
echo $roleErr;
?>
</span></td>
				</tr>
				<tr>
					<td><label for="account">Account: </label></td>
					<td>
						<?php 
include_once 'helpers/getDropDownListFromTableData.php';
echo dataDropdown('clusters', 'AccountName');
?>
					</td>