本文整理汇总了PHP中Empresa::get_empresa_by_nome_fantasia方法的典型用法代码示例。如果您正苦于以下问题:PHP Empresa::get_empresa_by_nome_fantasia方法的具体用法?PHP Empresa::get_empresa_by_nome_fantasia怎么用?PHP Empresa::get_empresa_by_nome_fantasia使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Empresa
的用法示例。
在下文中一共展示了Empresa::get_empresa_by_nome_fantasia方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: Empresa
<div class="class-form pesquisa">
<h1>Pesquisar Empresa</h1>
<form method="POST" class="pesquisa-campos" id="pesquisa-campos" name="pesquisa-campos" action="pesquisa_empresa.php">
<table>
<tr>
<td><span >Nome Fantasia: </span>
<input type="text" id="name_search" name="name_search" title="Digite o código ou a descrição para pesquisar">
<input class="button" type="submit" value="Buscar"></td>
</tr>
</table>
</form>
<?php
if (isset($_POST['name_search']) && $_POST['name_search'] != "") {
$empresa = new Empresa();
$empresas = $empresa->get_empresa_by_nome_fantasia($_POST['name_search']);
if (count($empresas) == 0) {
echo '<div class="msg">Nenhum registro encontrado!</div>';
}
if (count($empresas) > 6) {
// exibe com scroll
echo '<div style="float:left; height: 200px; width:100%; overflow-x: hidden; overflow-y: scroll;">';
}
echo '<table class="exibe-pesquisa">';
$aux = 0;
foreach ($empresas as $key => $empresa) {
if ($aux % 2 == 0) {
echo '<tr style="background-color:rgba(230,230,230,0.8);">';
} else {
echo '<tr style="background-color:rgba(200,200,200,0.8);">';
}