| Current Path : /home/ataenra/www/ATA/INTRANET/Admin/ |
| Current File : /home/ataenra/www/ATA/INTRANET/Admin/PrimeRenov.php |
<!DOCTYPE html>
<html lang="en">
<head>
<title>MODIF PRIMES</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<style type="text/css">
td{padding: 4px 14px;}
</style>
</head>
<body>
<div class="col-md-12">
<form method="post" autocomplete="off">
<legend>MONTANTS DES PRIMES</legend>
<table>
<tr>
<th>Couleur</th>
<th>TAUX</th>
<th>NB1</th>
<th>NB2</th>
<th>NB3</th>
<th>NB4</th>
<th>NB5</th>
<th>NB6</th>
<th>NB7</th>
</tr>
<?php while ($R = $PR->fetch(PDO::FETCH_OBJ)) { ?>
<tr>
<td><?php echo $R->ID; ?></td>
<td><input type="text" name="TX" value="<?php echo $R->TX; ?>"></td>
<td><input type="text" name="NB1" value="<?php echo $R->NB1; ?>"></td>
<td><input type="text" name="NB2" value="<?php echo $R->NB2; ?>"></td>
<td><input type="text" name="NB3" value="<?php echo $R->NB3; ?>"></td>
<td><input type="text" name="NB4" value="<?php echo $R->NB4; ?>"></td>
<td><input type="text" name="NB5" value="<?php echo $R->NB5; ?>"></td>
<td><input type="text" name="NB6" value="<?php echo $R->NB6; ?>"></td>
<td><input type="text" name="NB7" value="<?php echo $R->NB7; ?>"></td>
<td><input class="btn btn-success" type="submit" name="<?php echo $R->ID ?>" value="SAVE"></td>
<?php } ?>
</tr>
</table>
</form>
</Div>
</body>
</html>