本文整理汇总了PHP中company::profile_company方法的典型用法代码示例。如果您正苦于以下问题:PHP company::profile_company方法的具体用法?PHP company::profile_company怎么用?PHP company::profile_company使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类company
的用法示例。
在下文中一共展示了company::profile_company方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: company
<div class="features-info">
<div class="features-text">
<p><div id="company">
<form method="post" action="">
<div class="company_header"></div>
<div class="company_header">
<h4>Company Details</h4>
</div>
<div class="company_body">
<?php
include_once '../config/company.php';
$ob1 = new company();
$company_id = $_SESSION['userid'];
$res1 = $ob1->profile_company($company_id);
$r = mysqli_fetch_array($res1);
$co = explode("-", trim($r['contact_number']));
$t = str_replace('+', '', $co[0]);
?>
<table width="647" border="0">
<tr>
<th width="342" height="37">* Company Name :</th>
<td width="240"><?php
echo $r['company_name'];
?>
</td>
</tr>
<tr>
<th height="33">* Company Description :</th>
<td><?php