当前位置: 首页>>代码示例>>PHP>>正文


PHP Conexao函数代码示例

本文整理汇总了PHP中Conexao函数的典型用法代码示例。如果您正苦于以下问题:PHP Conexao函数的具体用法?PHP Conexao怎么用?PHP Conexao使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了Conexao函数的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: VerificaCamposObrigatorios

<?php

/********************************************************************************
Autor: Vitor Hugo
Data Criação: 06/12/2005
Data Atualização: 06/12/2005 - Vitor Hugo
Sistema: Home Bank
Descrição: Cadastra de Usuário
************************************************************************************/
include "funcoes_js.php";
$escondercampo = " readonly style='border:none;' ";
if (Conexao($opcao = 'open', conexao_host, conexao_user, conexao_pass, conexao_db)) {
    ?>

<script language=javascript>
function VerificaCamposObrigatorios()
{
    if (document.form.codtipocliente.value =='')
    {
      alert('Campo "Tipo de Cliente" obrigatório.');
      document.form.codtipocliente.focus();
      return false;
    }
	
    if (document.form.nomcliente.value =='')
    {
      alert('Campo "Nome" obrigatório.');
      document.form.nomcliente.focus();
      return false;
    }
	
开发者ID:tvieira,项目名称:homebank,代码行数:30,代码来源:cadastracliente.php

示例2: Conexao

<br>

<table border="1" width="600" cellspacing="0" class="table">
  <tr>
      <td width="5"align="center">&nbsp;
          
      </td>
      <td class="td2" align="center">
          <b>Ordem de Serviço já Solicitadas</b>
      </td>
  </tr>
</table>

<?php 
// Abre conexão com o bd
$achou = Conexao($opcao = 'open', conexao_host, conexao_user, conexao_pass, conexao_db);
// Lista dados que estão cadastrados na tabela
if ($_REQUEST['tipoacao'] == "") {
    // Verifica se o usuário é delegado
    $sqldel = "select coddelegado From delegado where codcliente = " . $_SESSION['codcliente'];
    $querydel = mysql_query($sqldel);
    $rsresultdel = mysql_fetch_array($querydel);
    if ($rsresultdel['coddelegado'] != "") {
        // Sql para recuperar as solicitações que o delegado fez
        $sqlString = "Select s.*, t.destiposervsol\n                 From solicitacaoserv s, tiposervsolicitacao t\n                 where s.codtiposervsol = t.codtiposervsol\n\t\t\t\t and s.codcliente = '" . $_SESSION['codcliente'] . "'" . "\n                 order by s.codsolicitacao desc";
    } else {
        //  Sql para recuperar as solicitações do cliente
        $sqlString = "Select s.*, t.destiposervsol\n                 From solicitacaoserv s, tiposervsolicitacao t\n                 where s.codtiposervsol = t.codtiposervsol\n\t\t\t\t and s.numcontacorrente = '" . $_SESSION['numcontacorrente'] . "'" . "\n                 order by s.codsolicitacao desc";
    }
    $rsqry = mysql_query($sqlString);
    $dados = mysql_fetch_array($rsqry);
开发者ID:tvieira,项目名称:homebank,代码行数:31,代码来源:consultasolcliente.php

示例3: date

                    /* GERA DATA ATUAL*/
                    $datatualacesso = date("Y-m-d", time());
                    /*BUSCA ÚLTIMA DATA DE ACESSO NO BD*/
                    $sql2 = "select * from cliente where codcliente = " . $_SESSION['codcliente'];
                    $result2 = mysql_query($sql2) or die(mysql_error());
                    $dadosresult = mysql_fetch_array($result2);
                    $_SESSION['datultacessocli'] = $dadosresult['datultacesso'];
                    /*CADASTRA ULTIMO ACESSO DO CLIENTE*/
                    $sql = "update cliente set datultacesso = '" . $datatualacesso . "' where codcliente = " . $_SESSION['codcliente'];
                    $result = mysql_query($sql) or die(mysql_error());
                    /* Inclui página inicial */
                    $nomePAG = "index.php";
                } else {
                    $ValLoginErro = "Dados incorretos, tente novamente.";
                }
                Conexao($opcao = 'close');
            } else {
                $ValLoginErro = "Dados incorretos, tente novamente.";
            }
        }
    }
}
?>
<body background="img/bg.gif" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<table width="100%" height="100%" id="central">
  <tr><td width="100%" height="100%" align="center" valign="middle">
<script language="JavaScript1.2">mmLoadMenus();</script>
<!--The following section is an HTML table which reassembles the sliced image in a browser.-->
<!--Copy the table section including the opening and closing table tags, and paste the data where-->
<!--you want the reassembled image to appear in the destination document. -->
<!--======================== BEGIN COPYING THE HTML HERE ==========================-->
开发者ID:tvieira,项目名称:homebank,代码行数:31,代码来源:index.php


注:本文中的Conexao函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。