本文整理汇总了PHP中Company::get_company_by_id方法的典型用法代码示例。如果您正苦于以下问题:PHP Company::get_company_by_id方法的具体用法?PHP Company::get_company_by_id怎么用?PHP Company::get_company_by_id使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Company
的用法示例。
在下文中一共展示了Company::get_company_by_id方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1:
<!-- END NAVBAR -->
<!-- Begin sidebar -->
<?php
include '../includes/admin_sidebar.php';
?>
<!-- End sidebar -->
<div id="page-wrapper">
<div class="container-fluid">
<div class="intro">
<h2>Vacature overzicht</h2>
</div>
<div class="edit">
<?php
$get_company_info = $company->get_company_by_id($_GET['bedrijfID']);
?>
<form method="post">
<div class="form-group">
<label for="">Wijzig bedrijfsnaam</label>
<input type="text" name="bedrijfnaam" value="<?php
echo $get_company_info['bedrijfsnaam'];
?>
" class="form-control">
</div>
<div class="form-group">
<label for="">Wijzig adres</label>
<input type="text" name="adres" value="<?php
echo $get_company_info['adres'];
?>
" class="form-control">
示例2:
<?php
include 'includes/sidebar.php';
?>
<!-- End sidebar -->
<div id="page-wrapper">
<div class="container-fluid">
<div class="well">
<p>
Wijzig bedrijfsgegevens
</p>
</div>
<?php
$get_company_id = $company->get_company_id($_SESSION['company_username']);
$get_company_id = $get_company_id['bedrijfID'];
$get_company_info = $company->get_company_by_id($get_company_id);
?>
<div class="add_vacature">
<form method="post">
<div class="form-group">
<label for="">Wijzig bedrijfsnaam</label>
<input type="text" name="bedrijfnaam" value="<?php
echo $get_company_info['bedrijfsnaam'];
?>
" class="form-control">
</div>
<div class="form-group">
<label for="">Wijzig adres</label>
<input type="text" name="adres" value="<?php
echo $get_company_info['adres'];
?>
示例3:
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
</select>
<button type="submit" name="button" class='btn btn-default'>Sorteer</button>
</form>
</div>
</div> -->
<div class="profile">
<div class="profile-header">
<div class="row">
<div class="col-xs-6 col-md-3">
<?php
$get_user = $company->get_company_by_id($_GET['profileID']);
?>
<img src="img/<?php
echo $get_user['profielfoto'];
?>
" alt="..." class="img-thumbnail">
<h4><?php
echo $get_user['bedrijfsnaam'];
?>
</h4>
</div>
<div class="col-cx-6 col-md-9 user-info">
<h2>Profiel informatie</h2>
<div class="blok1">
<span><b>Naam:</b> <?php
echo $get_user['bedrijfsnaam'];