Commercial Clients
Tek Systems
Tata consulting services
Rober Half
Randstad
Prokarma
Malten silver
Kelly Services
Hexaware
Experis
Birla Soft
CAI
Apex Systems
FULFILL YOUR
DREAMS
At IT Pandits Inc, one can experience the best of both worlds i.e. the energy of a fast growing environment combi...
<?php
global $wpdb;
$jobs_qry_title = "select * from jobs limit 0,2";
$results = $wpdb->get_results($jobs_qry_title);
foreach($results as $jobs)
{
echo '<div class = "innerphpcodewidget">';
echo '<div class = "row" id="divside" style="border-bottom:2px solid #5b90bc;">';
echo '<div class = "col-md-8 col-sm-4">';
?>
<h3 id="innerdivsideh5">
<strong><?php echo $jobs->title; ?></strong>
</h3>
<p id="innerdivsidep">
<?php echo accesspress_letter_count($jobs->descr,'45');?>
</p>
<?php
echo '<a href="/index.php/apply-job/" class="applynow"><strong><u>Apply Now</u></strong></a>';
echo '</br>';
echo '</br>';
echo '</div>';
echo '<div class = "col-md-4 col-sm-4">
<a class="project-link" href="/index.php/careers/">
<img src="/wp-content/uploads/2019/03/jobicon.png" alt="" style="padding-top:50px;" />
</a> ';
echo '</div>';
echo '</div>';
echo '</div>';
}
?>