Ir para conteúdo

Arquivado

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

flavialieggio

Qual e o enigma??

Recommended Posts

Olá galera!!!

 

Tenho uma combo em php que, qdo rodo ela num arquivo sozinha ela funciona beleza, mas qdo vou coloca-la na pagina correta ela nao funciona de jeito nenhum!!!!! Qual e o enigma!???!

 

Codigos:

 

combo sozinha!!

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html><head><title>Untitled Document</title><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"></head><body><select name="uf"><option selected>Selecione</option><?phpinclude ('includes/conexao.php');$curs = OCINewCursor($conn);$statement = OCIParse ($conn, "begin sipesca.pescasp005_detalhe_uf(:p_cursor,null); end;");OCIBindByName($statement,":p_cursor",$curs,-1,OCI_B_CURSOR);OCIExecute ($statement);OCIExecute ($curs);while (OCIFetchInto ($curs, $row, OCI_ASSOC)) {   //print $row['COD_UF'];   //print $row['SIG_UF'];   //print $row['NOM_UF'];      echo "<option value='".$row['COD_UF']."'>".$row['SIG_UF']."</option>";}OCIFreeStatement($statement);OCIFreeCursor($curs);ocilogoff($conn);?>  </select></body></html>

combo na pagina que tinha que funcionar!!

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"><html><head><title>SIPESCA WEB</title><META http-equiv=Content-Type content="text/html; charset=iso-8859-1"><LINK href="sipesca.css" type=text/css rel=STYLESHEET><META content="Microsoft FrontPage 5.0" name=GENERATOR><link href="sipesca.css" rel="stylesheet" type="text/css"><style type="text/css"><!--body {	margin-left: 0px;	margin-top: 0px;}--></style><script language="JavaScript" type="text/JavaScript"><!--function MM_reloadPage(init) {  //reloads the window if Nav4 resized  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {	document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();}MM_reloadPage(true);//--></script><script>function RetornaTexto(){  i = document.forms.form8.CD_UF.selectedIndex;  if (i == 0){	return false;  }  else{	document.forms.form8.SIG_UF.value = document.forms.form8.CD_UF.options[i].text;	return true;  }}</script></head><body><div id="Layer2" style="position:absolute; left:647px; top:170px; width:139px; height:98px; z-index:0"><form action="autentica.php" name="login" method="post">  <table width="100%"  border="0" cellspacing="0" cellpadding="0">	<tr>	  <td width="139" height="88" valign="middle" background="figuras/fundo_log.gif"><table width="100%"  border="0" cellspacing="0" cellpadding="0">		<tr>		  <td height="20" colspan="2"><div align="center"><font face="Verdana, Arial, Helvetica, sans-serif" size="1" color="#FFFFFF"><b>Área Restrita</b></font></div></td>		</tr>		<tr>		  <td width="31%" height="20"><font face="Verdana, Arial, Helvetica, sans-serif" size="1" color="#FFFFFF"><b>Login:</b></font></td>		  <td width="69%"><input name="login" type="text" class="text_campo" size="15"></td>		</tr>		<tr>		  <td height="20"><font face="Verdana, Arial, Helvetica, sans-serif" size="1" color="#FFFFFF"><b>Senha:</b></font></td>		  <td height="20"><input type="password" name="senha" size="15" class="text_campo"></td>		</tr>		<tr>		  <td colspan="2"><div align="center">			<input type="submit" name="ok" value="Ok" class="button_pequeno">		  </div></td>		</tr>	  </table></td>	</tr>  </table></form></div><table width="800" border="0" cellspacing="0" cellpadding="0">  <tr>	<td height="18" colspan="4"><?php include("includes/topo.php");?></td>  </tr>  <tr>	<td colspan="4"><img src="figuras/HOME-2.1_02.gif" width="800" height="123"></td>  </tr>  <tr>	<td colspan="4"><?php include("includes/men_flavia.php");?></td>  </tr>  <tr>	<td height="15" colspan="4"></td>  </tr>  <tr>	<td width="12" height="19"> </td>	<td width="10" valign="top" background="figuras/fundinho_01.gif"> </td>	<td width="617" valign="top" background="figuras/fundinho_02.gif"><font face="Verdana, Arial, Helvetica, sans-serif" size="1" color="#000000"><b>ESTATÍSTICA PESQUEIRA </b></font></td>	<td width="161" valign="top"> </td>  </tr>    <tr valign="top">	<td height="341" colspan="4">	<table width="100%"  border="0" cellspacing="0" cellpadding="0">	  <tr>		<td width="8" height="5"></td>		<td colspan="3"></td>	  </tr>	  <tr>		<td height="19"> </td>		<td height="25" colspan="2" valign="top"><div align="center"><font face="Verdana, Arial, Helvetica, sans-serif" size="1" color="#000000">Nesta pesquisa você obterá informações sobre a espécie desembarcada, os recursos extraídos, realcionados ao ano e estado que o usuário venha a escolher. Para realizar essa consulta, escolha as opções abaixo iniciando pelo Estado que deseja:</font> </div></td>		<td width="161" height="19" valign="top"> </td>	  </tr>	  <tr>		<td height="2"></td>		<td colspan="2" bgcolor="#D8D8D8"></td>		<td width="161"></td>	  </tr>	  <tr>		<td height="5"></td>		<td colspan="3"></td>	  </tr>	  <tr>		<td height="19"> </td>		<td width="38"></td>		<td width="593"><form action="rel_est.php" method="post" name="form8"> <input type="hidden" name="SIG_UF">  <font face="Verdana, Arial, Helvetica, sans-serif" size="1" color="#000000">Estado:</font>  <select name="CD_UF" class="list_box" onClick="RetornaTexto()">  <option selected>Selecione</option><?include ('includes/conexao.php');$curs = OCINewCursor($conn);$statement = OCIParse ($conn, "begin sipesca.pescasp005_detalhe_uf(:p_cursor,null); end;");OCIBindByName($statement,":p_cursor",$curs,-1,OCI_B_CURSOR);OCIExecute ($statement);OCIExecute ($curs);while (OCIFetchInto ($curs, $row, OCI_ASSOC)) {   //print $row['COD_UF'];   //print $row['SIG_UF'];   //print $row['NOM_UF'];      echo "<option value='".$row['COD_UF']."'>".$row['SIG_UF']."</option>";}OCIFreeStatement($statement);OCIFreeCursor($curs);ocilogoff($conn);?></select>.... e o resto!!!

Alguem me ajude por favor!!!

[]´s

Flávia

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.