Пример #1
0
" class="img-responsive img-rounded" style="max-width:400px; width:200px">
                            <dl class="dl-horizontal">
                                <dt>Full Name</dt>
                                <dd><?php 
echo $user_info['f_name'] . ' ' . $user_info['l_name'];
?>
</dd>
                                <dt>Date of Birth</dt>
                                <dd>
                                    <?php 
echo humanize_date($user_info['dob_estd']);
?>
 
                                    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
                                    <b>Age </b><?php 
echo calculate_age_year_from_y_m_d($user_info['dob_estd']) . ' Yrs';
?>
                                </dd>
                                <dt>Gender</dt>
                                <dd><?php 
if (strcasecmp($user_info['gender'], 'm') == 0) {
    echo 'Male';
} else {
    echo 'Female';
}
?>
</dd>
                                <dt>Email</dt>
                                <dd><a href='javascript:void(0)' data-toggle="modal" data-target="#myModal"><?php 
echo $user_info['email'];
?>
Пример #2
0
                        <dt>Gender</dt>
                        <dd><?php 
echo $jobseeker['gender'] == 0 ? 'Female' : 'Male';
?>
</dd>
                        <dt>Phone</dt>
                        <dd><?php 
echo $jobseeker['phone'];
?>
</dd>
                        <dt>DOB</dt>
                        <dd><?php 
echo humanize_date($jobseeker['dob_estd']);
?>
 <b>&nbsp;&nbsp;Age:</b> <?php 
echo calculate_age_year_from_y_m_d($jobseeker['dob_estd']);
?>
 Yrs</dd>
                        <dt>Marital Status</dt>
                        <dd><?php 
echo $jobseeker['marital_status'] == 0 ? 'Married' : 'Unmarried';
?>
</dd>
                    </dl>
                </div>
            </div>
            <div class="tab_grid row">
                <div class="well">
                        <h4>BIO</h4>
                        <p class="text-justify"><?php 
echo $jobseeker['profile'];