示例#1
0
	<div class="features">
		<div class="container">
			<div class="work-title">
				<h3>Post Vacancy<span></span></h3>
			</div>
			<div class="features-info">
				<div class="features-text">
					<h4>&nbsp;</h4>
                    <?php 
$company_id = $_SESSION['userid'];
include_once "../config/country.php";
include_once "../config/company.php";
$ob = new country();
$ob1 = new company();
$result = $ob1->get_details_company($company_id);
$res = $ob->select_location_details();
$res1 = $ob->select_qualification();
?>
					<form name="form1" method="post" action="">
					  <table width="509" border="0">
                        <tr>
                          <td width="291" height="50">Industry</td>
                          <td width="160"><select name="industry" id="industry">
                          <?php 
while ($re = mysqli_fetch_array($result)) {
    ?>
                          <option value="<?php 
    echo $re['Id'];
    ?>
"><?php 
    echo $re['category'];