Ir para conteúdo

POWERED BY:

Arquivado

Este tópico foi arquivado e está fechado para novas respostas.

phfmiranda

Inserir data no cadastro sem exibição

Recommended Posts

Boa noite galera,

 

Estou tentando colocar uma data para ser inserida no BD juntamente com um cadastro de cliente, o detalhe é o seguinte o digitador não irá ver o campo data, pois ele somente aparecerá na exibição do cliente, para que não haja forma de alterar este campo.

 

Eu tentei colocar conforme está no código, mas esta dando erro, vcs poderiam me dar uma força.

 

Obrigado.

 

<?php
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "") 
{
  if (PHP_VERSION < 6) {
    $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
  }

  $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);

  switch ($theType) {
    case "text":
      $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
      break;    
    case "long":
    case "int":
      $theValue = ($theValue != "") ? intval($theValue) : "NULL";
      break;
    case "double":
      $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
      break;
    case "date":
      $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
      break;
    case "defined":
      $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
      break;
  }
  return $theValue;
}
}
?>



<?php
$data_cadastro = date("d-m-Y");
?>



<?php
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "") 
{
  $theValue = (!get_magic_quotes_gpc()) ? addslashes($theValue) : $theValue;

  switch ($theType) {
    case "text":
      $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
      break;    
    case "long":
    case "int":
      $theValue = ($theValue != "") ? intval($theValue) : "NULL";
      break;
    case "double":
      $theValue = ($theValue != "") ? "'" . doubleval($theValue) . "'" : "NULL";
      break;
    case "date":
      $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
      break;
    case "defined":
      $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
      break;
  }
  return $theValue;
}

$editFormAction = $_SERVER['PHP_SELF'];
if (isset($_SERVER['QUERY_STRING'])) {
  $editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);
}

if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "Clientes")) {
  $insertSQL = sprintf("INSERT INTO clientes (Nome, pai, mae, Endereco, Bairro, Cidade, Estado, Cep, Cpf, Identidade, Data_Nascimento, Estado_civil, Telefone, Celular, Observacao, Advogado_resp, Caixa, Data_cadastro) VALUES (%s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s)",
                       GetSQLValueString($_POST['nome'], "text"),
                       GetSQLValueString($_POST['pai'], "text"),
                       GetSQLValueString($_POST['mae'], "text"),
                       GetSQLValueString($_POST['endereco'], "text"),
                       GetSQLValueString($_POST['bairro'], "text"),
                       GetSQLValueString($_POST['cidade'], "text"),
                       GetSQLValueString($_POST['estado'], "text"),
                       GetSQLValueString($_POST['cep'], "text"),
                       GetSQLValueString($_POST['cpf'], "text"),
                       GetSQLValueString($_POST['identidade'], "text"),
                       GetSQLValueString($_POST['nascimento'], "text"),
                       GetSQLValueString($_POST['EstadoCivil'], "text"),
                       GetSQLValueString($_POST['telefone'], "text"),
                       GetSQLValueString($_POST['celular'], "text"),
                       GetSQLValueString($_POST['observacao'], "text"),
                       GetSQLValueString($_POST['advogado'], "text"),
                       GetSQLValueString($_POST['caixa'], "text"),
			GetSQLValueString($_POST['Data_cadastro'], "$data_cadastro"));

  mysql_select_db($database_Conecta, $Conecta);
  $Result1 = mysql_query($insertSQL, $Conecta) or die(mysql_error());

  $insertGoTo = "Cliente_Ok.php";
  if (isset($_SERVER['QUERY_STRING'])) {
    $insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
    $insertGoTo .= $_SERVER['QUERY_STRING'];
  }
  header(sprintf("Location: %s", $insertGoTo));
}

mysql_select_db($database_Conecta, $Conecta);
$query_Lista_Advogados = "SELECT Nome FROM advogados ORDER BY Nome ASC";
$Lista_Advogados = mysql_query($query_Lista_Advogados, $Conecta) or die(mysql_error());
$row_Lista_Advogados = mysql_fetch_assoc($Lista_Advogados);
$totalRows_Lista_Advogados = mysql_num_rows($Lista_Advogados);

mysql_select_db($database_Conecta, $Conecta);
$query_Lista_Caixa = "SELECT * FROM caixas_arquivo ORDER BY Numero_caixa ASC";
$Lista_Caixa = mysql_query($query_Lista_Caixa, $Conecta) or die(mysql_error());
$row_Lista_Caixa = mysql_fetch_assoc($Lista_Caixa);
$totalRows_Lista_Caixa = mysql_num_rows($Lista_Caixa);
?>

 

Compartilhar este post


Link para o post
Compartilhar em outros sites

×

Informação importante

Ao usar o fórum, você concorda com nossos Termos e condições.