Ir para conteúdo

POWERED BY:

Arquivado

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

diegojaviel

MySQL

Recommended Posts

Boa noite amigos!

Estou precisando de ajuda!

 

seguinte
eu tenho 2 tabelas no meu banco:
1- Cadastros: id,nome,senha,código (este código é como se fosse uma inscrição)
e a outra tabela é
2- Formulário: tem varios campos sendo que um deles eu preciso que me traga o meu código que foi inserido lá na tabela 1 quando eu fiz o cadastro.
Por exemplo:
no meu cadastro meu código é 1234.
Agora que já fiz o cadastro, irei responder o formulário:
No campo Numero do formulário: tera que vir o meu código(1234 +01) por ser a primeira vez que estou respondendo este formulario... se eu responder novamente irá gerar 1234+02 e assim sucessivamente.
Obrigado!

Compartilhar este post


Link para o post
Compartilhar em outros sites

Desculpe o campo numero_ideia que teria que puxar do BD o Código que eu usei pra logar, digamos assim

<?php require_once('Connections/biomatika.php'); ?>
<?php
//initialize the session
if (!isset($_SESSION)) {
  session_start();
}

// ** Logout the current user. **
$logoutAction = $_SERVER['PHP_SELF']."?doLogout=true";
if ((isset($_SERVER['QUERY_STRING'])) && ($_SERVER['QUERY_STRING'] != "")){
  $logoutAction .="&". htmlentities($_SERVER['QUERY_STRING']);
}

if ((isset($_GET['doLogout'])) &&($_GET['doLogout']=="true")){
  //to fully log out a visitor we need to clear the session varialbles
  $_SESSION['MM_Username'] = NULL;
  $_SESSION['MM_UserGroup'] = NULL;
  $_SESSION['PrevUrl'] = NULL;
  unset($_SESSION['MM_Username']);
  unset($_SESSION['MM_UserGroup']);
  unset($_SESSION['PrevUrl']);
	
  $logoutGoTo = "index.html";
  if ($logoutGoTo) {
    header("Location: $logoutGoTo");
    exit;
  }
}
?>
<?php
if (!isset($_SESSION)) {
  session_start();
}
$MM_authorizedUsers = "";
$MM_donotCheckaccess = "true";

// *** Restrict Access To Page: Grant or deny access to this page
function isAuthorized($strUsers, $strGroups, $UserName, $UserGroup) { 
  // For security, start by assuming the visitor is NOT authorized. 
  $isValid = False; 

  // When a visitor has logged into this site, the Session variable MM_Username set equal to their username. 
  // Therefore, we know that a user is NOT logged in if that Session variable is blank. 
  if (!empty($UserName)) { 
    // Besides being logged in, you may restrict access to only certain users based on an ID established when they login. 
    // Parse the strings into arrays. 
    $arrUsers = Explode(",", $strUsers); 
    $arrGroups = Explode(",", $strGroups); 
    if (in_array($UserName, $arrUsers)) { 
      $isValid = true; 
    } 
    // Or, you may restrict access to only certain users based on their username. 
    if (in_array($UserGroup, $arrGroups)) { 
      $isValid = true; 
    } 
    if (($strUsers == "") && true) { 
      $isValid = true; 
    } 
  } 
  return $isValid; 
}

$MM_restrictGoTo = "arearestrita.html";
if (!((isset($_SESSION['MM_Username'])) && (isAuthorized("",$MM_authorizedUsers, $_SESSION['MM_Username'], $_SESSION['MM_UserGroup'])))) {   
  $MM_qsChar = "?";
  $MM_referrer = $_SERVER['PHP_SELF'];
  if (strpos($MM_restrictGoTo, "?")) $MM_qsChar = "&";
  if (isset($_SERVER['QUERY_STRING']) && strlen($_SERVER['QUERY_STRING']) > 0) 
  $MM_referrer .= "?" . $_SERVER['QUERY_STRING'];
  $MM_restrictGoTo = $MM_restrictGoTo. $MM_qsChar . "accesscheck=" . urlencode($MM_referrer);
  header("Location: ". $MM_restrictGoTo); 
  exit;
}
?>
<?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;
}
}

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

if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) {
  $insertSQL = sprintf("INSERT INTO ideias (ideias_id, numero_ideia, natureza, autoria, inovacao, cpfcnpj, email, telefones, nome, interesse, status, investimento, investimento1, intelectual, registro, resumo_ideia, problema_solucao, ganhos, inovadora) VALUES (%s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s)",
                       GetSQLValueString($_POST['ideias_id'], "int"),
                       GetSQLValueString($_POST['numero_ideia'], "text"),
                       GetSQLValueString($_POST['natureza'], "text"),
                       GetSQLValueString($_POST['autoria'], "text"),
                       GetSQLValueString($_POST['inovacao'], "text"),
                       GetSQLValueString($_POST['cpfcnpj'], "text"),
                       GetSQLValueString($_POST['email'], "text"),
                       GetSQLValueString($_POST['telefones'], "text"),
                       GetSQLValueString($_POST['nome'], "text"),
                       GetSQLValueString($_POST['interesse'], "text"),
                       GetSQLValueString($_POST['status'], "text"),
                       GetSQLValueString($_POST['investimento'], "text"),
                       GetSQLValueString($_POST['investimento1'], "text"),
                       GetSQLValueString($_POST['intelectual'], "text"),
                       GetSQLValueString($_POST['registro'], "text"),
                       GetSQLValueString($_POST['resumo_ideia'], "text"),
                       GetSQLValueString($_POST['problema_solucao'], "text"),
                       GetSQLValueString($_POST['ganhos'], "text"),
                       GetSQLValueString($_POST['inovadora'], "text"));

  mysql_select_db($database_biomatika, $biomatika);
  $Result1 = mysql_query($insertSQL, $biomatika) or die(mysql_error());

  $insertGoTo = "sucesso-envio-ideia.php";
  if (isset($_SERVER['QUERY_STRING'])) {
    $insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
    $insertGoTo .= $_SERVER['QUERY_STRING'];
  }
  header(sprintf("Location: %s", $insertGoTo));
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Minhas Idéias | Prêmio BIOMÁTIKA/FIEC de Inovação Aberta</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link href="css/style.css" rel="stylesheet" type="text/css" />
<link rel="stylesheet" type="text/css" href="css/coin-slider.css" />
<script type="text/javascript" src="js/cufon-yui.js"></script>
<script type="text/javascript" src="js/cufon-georgia.js"></script>
<script type="text/javascript" src="js/jquery-1.4.2.min.js"></script>
<script type="text/javascript" src="js/script.js"></script>
<script type="text/javascript" src="js/coin-slider.min.js"></script>
<!--TERMS OF USE. DON'T EDIT OR DELETE THESE LINES. IF YOU EDIT OR DELETE THESE LINES AN ALERT MESSAGE MAY APPEAR WHEN TEMPLATE WILL BE ONLINE-->
	<style>		
	#my-header-new a,#my-header-new a:hover {color:#c2cae0;}#my-header-new a:hover {text-decoration:none}.style1 {	font-size: 16px
}
    .main #structure .content .content_resize .mainbar .article .post_content #form1 table {
	text-align: left;
}
    tabela {
	font-style: normal;
	text-align: left;
}
    </style>
	<!--TERMS OF USE-->
</head>
<body>
<div class="main">
<div id="structure">
<!--TERMS OF USE. DON'T EDIT OR DELETE THESE LINES. IF YOU EDIT OR DELETE THESE LINES AN ALERT MESSAGE MAY APPEAR WHEN TEMPLATE WILL BE ONLINE-->
		<div id="tcopy" style="height: 75px; position: absolute; bottom: 0px; left:0px; border: none; width: 100%;"><br/><br/><br/>
																	 
		</div>	
		<!--TERMS OF USE-->

  <div class="header">
    <div class="header_resize">
      <div class="searchform">
        <form id="formsearch" name="formsearch" method="post" action="#">
          SIGA-NOS:<img src="images/icon-2.jpg" alt="icon" width="31" height="31" hspace="5" /><a href="#"><img src="images/icon-4.png" alt="icon" width="31" height="31" /></a>
        </form>
      </div>
      <div class="logo">
        <h1><a href="index.html"><img src="images/logobio1.jpg" width="38" height="34" />BIOMÁTIKA<span></span> <small>A P R E S E N T A:</small></a></h1>
      </div>
      <div class="clr"></div>
      <div class="slider">
        <div id="coin-slider"> <a href="#"><img src="images/slide1.jpg" width="960" height="360" alt="" /></a> <a href="#"><img src="images/slide2.jpg" width="960" height="360" alt="" /></a> <a href="#"><img src="images/slide3.jpg" width="960" height="360" alt="" /></a> </div>
        <div class="clr"></div>
      </div>
      <div class="clr"></div>
      <div class="menu_nav">
        <ul>
          <li><a href="index.html">HOME PAGE</a></li>
          <li><a href="quem-somos.html">QUEM SOMOS</a></li>
          <li><a href="regulamento.html">REGULAMENTO</a></li>
          <li><a href="premiacao.html">PREMIAÇÃO</a></li>
          <li><a href="fale-conosco.html"><span>fale conosco</span></a></li>
        </ul>
      </div>
      <div class="clr"></div>
    </div>
  </div>
  <div class="content">
    <div class="content_resize">
      <div class="mainbar">
        <div class="article">
          <h2>Bem Vindo Candidato de CIP nº<?php echo $_SESSION['MM_Username']; ?>! <a href="<?php echo $logoutAction ?>">[sair]</a></h2>
          <div class="img"><img src="images/envieideia.jpg" width="620" height="154" alt="" class="fl" /></div>
          <div class="post_content">
            <p> </p>
            <p>1º PRÊMIO BIOMÁTIKA/UNIEMPRE DE INOVAÇÃO ABERTA</p>
            <p> </p>
            <form action="<?php echo $editFormAction; ?>" method="post" name="form1" id="form1">
              <table align="center">
                <tr valign="baseline">
                  <td nowrap="nowrap" align="right">CIP/Nº da Idéia:</td>
                  <td><input type="text" name="numero_ideia" size="8" /></td>
                </tr>
                <tr valign="baseline">
                  <td nowrap="nowrap" align="right">Natureza:</td>
                  <td><select name="natureza" id="natureza">
                    <option>Funcionario</option>
                    <option>Consultor</option>
                    <option>Pesquisador</option>
                    <option>Instituicao de Ensio</option>
                    <option>Estudante</option>
                    <option>Consultoria em Inovacao</option>
                    <option>Fornecdor </option>
                    <option>Startup</option>
                    <option>Acelerador</option>
                    <option>Org. Sociedade Civil</option>
                    <option>Cidadao</option>
                  </select></td>
                </tr>
                <tr valign="baseline">
                  <td nowrap="nowrap" align="right">Autoria:</td>
                  <td><label for="autoria"></label>
                    <select name="autoria" id="autoria">
                      <option>Individual</option>
                      <option>Equipe</option>
                    </select></td>
                </tr>
                <tr valign="baseline">
                  <td nowrap="nowrap" align="right">Área de Aplicação da Idéia:</td>
                  <td><label for="inovacao"></label>
                    <select name="inovacao" id="inovacao">
                      <option>Produto</option>
                      <option>Processo de Fabricacao</option>
                      <option>Gestao da Empresa</option>
                    </select></td>
                </tr>
                <tr valign="baseline">
                  <td nowrap="nowrap" align="right">CPF/CNPJ:</td>
                  <td><input type="text" name="cpfcnpj" value="" size="32" /></td>
                </tr>
                <tr valign="baseline">
                  <td nowrap="nowrap" align="right">Email:</td>
                  <td><input type="text" name="email" value="" size="32" /></td>
                </tr>
                <tr valign="baseline">
                  <td nowrap="nowrap" align="right">Telefone:</td>
                  <td><input type="text" name="telefones" value="" size="32" /></td>
                </tr>
                <tr valign="baseline">
                  <td nowrap="nowrap" align="right">Nome:</td>
                  <td><input type="text" name="nome" value="" size="32" /></td>
                </tr>
                <tr valign="baseline">
                  <td nowrap="nowrap" align="right">Interesse em:</td>
                  <td><label for="interesse"></label>
                    <select name="interesse" id="interesse">
                      <option>Transferir a ideia / tecnologia para a empresa interessada</option>
                      <option>Desenvolver a ideia/ transformar em negocio</option>
                      <option>Firmar parceria para o desenvolvimento conjunto da ideia</option>
                    </select></td>
                </tr>
                <tr valign="baseline">
                  <td nowrap="nowrap" align="right">Status da Idéia:</td>
                  <td><label for="status"></label>
                    <select name="status" id="status">
                      <option>Pesquisa</option>
                      <option>Desenvolvimento</option>
                      <option>Prototipo</option>
                      <option>Prototipo ja testado</option>
                      <option>Plano de negocios ou EVETEC</option>
                      <option>Ja comercializada</option>
                      <option>Ideia Geral – em fase de desenvolvimento/detalhamento</option>
                    </select></td>
                </tr>
                <tr valign="baseline">
                  <td nowrap="nowrap" align="right">Houve investimento?</td>
                  <td><label for="investimento"></label>
                    <select name="investimento" id="investimento">
                      <option>Sim</option>
                      <option>Não</option>
                    </select></td>
                </tr>
                <tr valign="baseline">
                  <td nowrap="nowrap" align="right">Se sim, qual tipo de investimento?</td>
                  <td><label for="investimento1"></label>
                    <select name="investimento1" id="investimento1">
                      <option>Consultoria em Desenvolvimento do Produto</option>
                      <option>Consultoria em Modelagem do Negocio</option>
                      <option>Incubacao da Ideia</option>
                      <option>Aporte Financeiro</option>
                    </select></td>
                </tr>
                <tr valign="baseline">
                  <td nowrap="nowrap" align="right">Há proteção Intelectual?</td>
                  <td><label for="intelectual"></label>
                    <select name="intelectual" id="intelectual">
                      <option>Sim</option>
                      <option>Não</option>
                    </select></td>
                </tr>
                <tr valign="baseline">
                  <td nowrap="nowrap" align="right">Registro da Marca?</td>
                  <td><label for="registro"></label>
                    <label for="registro"></label>
                    <select name="registro" id="registro">
                      <option>Sim</option>
                      <option>Não</option>
                    </select></td>
                </tr>
                <tr valign="absolutemiddle">
                  <td align="center" nowrap="nowrap"><p>Descreva resumidamente </p>
                    <p>sua Idéia:</p></td>
                  <td><label for="resumo_ideia"></label>
                    <label for="resumo_ideia"></label>
                    <textarea name="resumo_ideia" id="resumo_ideia" cols="45" rows="5"></textarea></td>
                </tr>
                <tr valign="absolutemiddle">
                  <td height="63" align="center" nowrap="nowrap"><p>Qual problema ou solução </p>
                    <p>você espera solucionar?</p></td>
                  <td><label for="problema_solucao"></label>
                    <textarea name="problema_solucao" id="problema_solucao" cols="45" rows="5"></textarea></td>
                </tr>
                <tr valign="absolutemidle">
                  <td nowrap="nowrap" align="center"><p>Quais os ganhos que a </p>
                    <p>empresa terá se adotar sua idéia?</p></td>
                  <td><label for="ganhos"></label>
                    <textarea name="ganhos" id="ganhos" cols="45" rows="5"></textarea></td>
                </tr>
                <tr valign="absolutemiddle">
                  <td nowrap="nowrap" align="left">Porque sua idéia é inovadora?</td>
                  <td><label for="inovadora"></label>
                    <textarea name="inovadora" id="inovadora" cols="45" rows="5"></textarea></td>
                </tr>
                <tr valign="baseline">
                  <td nowrap="nowrap" align="right"> </td>
                  <td><input type="submit" value="Enviar Idéia" /></td>
                </tr>
              </table>
              <input type="hidden" name="ideias_id" value="" />
              <input type="hidden" name="MM_insert" value="form1" />
            </form>
            <p> </p>
<p> </p>
            <p> </p>
            <p> </p>
<p> </p>
            <p class="spec"> </p>
          </div>
          <div class="clr"></div>
        </div>
        <div class="article">
          <h2> </h2>
<div class="img"></div>
          <div class="post_content">
            <p> </p>
            <p> </p>
</div>
          <div class="clr"></div>
        </div>
        </div>
      <div class="sidebar">
        <div class="gadget">
          <h2 class="star"> O PRÊMIO</h2>
          <div class="clr"></div>
          <ul class="sb_menu">
            <li><a href="sobre-o-premio.html">Sobre</a></li>
            <li><a href="regulamento.html">Regulamento</a></li>
            <li><a href="inscreva-se.php">Inscreva-se</a></li>
            <li><a href="duvidas-frequentes.html">Dúvidas Frequentes</a></li>
            <li><a href="envio-de-ideias.html">Envio de Idéias</a></li>
            <li><a href="minhas-ideias.php">Minhas Idéias</a></li>
            <li></li>
          </ul>
        </div>
        <div class="gadget">
          <h2 class="star"> </h2>
        </div>
      </div>
      <div class="clr"></div>
    </div>
  </div>
  <div class="fbg">
    <div class="fbg_resize">
<div class="col c1">
  <h2 align="left">Realização:</h2>
  <p><a href="www.biomatika.com.br"><img src="images/logobio.jpg" width="90" height="46" hspace="40" /></a></p>
</div>
<div class="col c2">
  <h2 align="center"><span>Apoio</span>:</h2>
  <p><a href="http://www.sfiec.org.br/portalv2/sites/portaldafiec/home.php?st=inicio"><img src="images/logofiec.jpg" width="140" height="37" /></a><a href="http://www.fiec.org.br/portalv2/sites/indi/"><img src="images/logoindi.jpg" width="134" height="36" align="right" /></a></p>
  <p><a href="http://www.fiec.org.br/portalv2/sites/sindquimica/"><img src="images/logoSINDQUIMICA.jpg" width="112" height="45" hspace="100" /></a></p>
  <p> </p>
</div>
<div class="col c3">
  <h2 align="center"><span>Parceiros</span>:</h2>
  <p><a href="www.paguemenos.com.br"><img src="images/logopmenos.jpg" width="90" height="76" hspace="100" /></a></p>
</div>
<div class="clr"></div>
    </div>
  </div>
  <div class="footer">
    <div class="footer_resize">
      <p class="lf">2013 © Copyright <a href="#">Prêmio Biomátika/FIEC de Inovação Aberta</a>.</p>
      <div style="clear:both;"></div>
    </div>
  </div>
</div></div>
</body>
</html>

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.