Пример #1
0
<?php

$id = $_POST['Data'];
include_once "../config/job.php";
$ob1 = new job();
$result = $ob1->select_vacancy_update($id);
$n = mysqli_num_rows($result);
if ($n > 0) {
    ?>
<table width="200" border="1">
  <tr>
    <th>Designation</th>
    <th>DesiredProfile</th>
    <th>Experience</th>
    <th>Salary</th>
     <th>Status</th>
    <th>Created Date</th>
    <th></th>
    
  </tr>
<?php 
    while ($r = mysqli_fetch_array($result)) {
        ?>

  <tr>
    <td><?php 
        echo $r['designation'];
        ?>
</td>
    <td><?php 
        echo $r['DesiredProfile'];