コード例 #1
0
   <!-- Experience box -->       			
       		<div class="box box-info">
            <div class="box-header with-border">
              <h3 class="box-title"> 
              	Experience
              	 </h3>
              <div class="box-tools pull-right">
              		<button class="btn btn-box-tool" data-widget="collapse" data-toggle="tooltip" title="Open/Close This Box"><i class="fa fa-minus"></i></button>
              		<button class="btn btn-box-tool" data-widget="remove" data-toggle="tooltip" title="Remove"><i class="fa fa-times"></i></button>
              </div>
            </div>
                  <div class="box-body bg-info ">
				  <div class="row">
				  <div class="col-md-12 col-sm-12  ">
	             <p><?php 
echo list_talent_experiences($talent_id);
?>
 &nbsp;</p>
						
	            </div>
				  </div>
				  </div>	   
            <div class="box-footer">
			 <div class="text-right"><a  href="<?php 
echo $_SERVER['PHP_SELF'] . "?route=modules/talent/edit_talent_profile&talent_id=" . $talent_id . '#experience';
?>
" title="">Edit Experience</a></div>
            </div><!-- /.box-footer-->
          </div><!-- /.box Address-->          
    
   <!-- Portfolio Items Information box -->       			
コード例 #2
0
$created_on = $experience['created_on'];
$created_by = $experience['created_by'];
$last_modified_by = $experience['last_modified_by'];
$last_modified_on = $experience['last_modified_on'];
$sql = 'SELECT * FROM tams_talent WHERE talent_status = "draft"';
$get_talents = DB::query($sql);
foreach ($get_talents as $talent) {
    $tbl2->addRow();
    $tbl2->addCell("<a href='" . $_SERVER['PHP_SELF'] . "?route=modules/talent/view_talent_profile&talent_id=" . $talent['talent_id'] . "'><img src='" . $talent['photo1_url'] . "' alt='Photo1' width='100px' height='100px'; /></a>");
    $tbl2->addCell($talent['first_name'] . " " . $talent['last_name']);
    $tbl2->addCell($talent['sex']);
    $tbl2->addCell(getAge($talent['dob']));
    $tbl2->addCell($talent['height_cm']);
    $tbl2->addCell($talent['weight_kg']);
    $tbl2->addCell($talent['nationality']);
    $tbl2->addCell(list_talent_experiences($talent['talent_id']));
    $tbl2->addCell("<a class='pull btn btn-danger btn-circle btn-xs' href ='" . $_SERVER['PHP_SELF'] . "?route=modules/talent/edit_talent_profile&talent_id=" . $talent['talent_id'] . "'>Edit&nbsp;&nbsp;<span class='glyphicon glyphicon-edit'></span></a><br/>\n\t\t\t\t<a class='btn btn-info btn-circle btn-xs' href ='" . $_SERVER['PHP_SELF'] . "?route=modules/talent/view_talent_profile&talent_id=" . $talent['talent_id'] . "'>View&nbsp;&nbsp;<span class='glyphicon glyphicon-user'></span></a>");
}
?>
<!--   Content Header (Page header) -->


<section class="content-header">
	<h1>
		Saved Talent

		<small>
			Talent List
		</small>
	</h1>
	<ol class="breadcrumb">