Guest Evandro Postado Outubro 2, 2008 Denunciar Share Postado Outubro 2, 2008 ----------------------------------finalizar_final.php<form method="POST" action="teste1.php" name="formulario"> <table width="571" border="0"> <tr> <td width="406">Valor do Frete: </td> <td width="155"><div align="right"> <? $v_sedex=$sedex["valor"]; echo "R$ " . number_format($sedex["valor"], 2, ",", ",");?> </div></td> </tr> </table> <table width=572" border="0"> <tr> <td width="406">Total</td> <td width="156"><div align="right"><? echo "R$ " . number_format($v_sedex+$v_subtotal, 2, ",", ","); ?></div></td> </tr> </table> <table width="100%" border="0" cellspacing="2" cellpadding="0"> <tr> <td> <input type="submit" name="submit" value="Gerar Boleto" /></form>----------------------------------finalizar_final.php-----------------------------------teste1.php<!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><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>Untitled Document</title></head><body><?echo $_POST["v_sedex];?></body></html>-----------------------------------teste1.phpEstou querendo pegar o conteudo da variavel v_sedex, esta dando o seguinte erro:Notice: Undefined index: v_sedex in c:\arquivos de programas\easyphp1-8\www\lojavirtual\teste1.php on line 12 Citar Link para o comentário Compartilhar em outros sites More sharing options...
0 jissa Postado Outubro 2, 2008 Denunciar Share Postado Outubro 2, 2008 coloque antes no seu codigoecho "<input type='hidden' name='' value=".number_format($sedex["valor"], 2, ",", ",").">"; Citar Link para o comentário Compartilhar em outros sites More sharing options...
0 phillippimenta Postado Outubro 2, 2008 Denunciar Share Postado Outubro 2, 2008 Ok cara Tente colocar o valor da variável $sedex['valor']; em um campo do tipo texto e depois tente pegar o valor.Qualquer coisa posta ai.......Só lembrando que o metódo POST do php pegar os valores dos campos do formulário e não de variáveis declaradas na página.Valeu.................. Citar Link para o comentário Compartilhar em outros sites More sharing options...
Pergunta
Guest Evandro
----------------------------------finalizar_final.php
<form method="POST" action="teste1.php" name="formulario">
<table width="571" border="0">
<tr>
<td width="406">Valor do Frete: </td>
<td width="155"><div align="right">
<? $v_sedex=$sedex["valor"]; echo "R$ " . number_format($sedex["valor"], 2, ",", ",");?>
</div></td>
</tr>
</table>
<table width=572" border="0">
<tr>
<td width="406">Total</td>
<td width="156"><div align="right"><? echo "R$ " . number_format($v_sedex+$v_subtotal, 2, ",", ","); ?></div></td>
</tr>
</table>
<table width="100%" border="0" cellspacing="2" cellpadding="0">
<tr>
<td>
<input type="submit" name="submit" value="Gerar Boleto" />
</form>
----------------------------------finalizar_final.php
-----------------------------------teste1.php
<!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>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>
<?
echo $_POST["v_sedex];
?>
</body>
</html>
-----------------------------------teste1.php
Estou querendo pegar o conteudo da variavel v_sedex, esta dando o seguinte erro:
Notice: Undefined index: v_sedex in c:\arquivos de programas\easyphp1-8\www\lojavirtual\teste1.php on line 12
Link para o comentário
Compartilhar em outros sites
2 respostass a esta questão
Posts Recomendados
Participe da discussão
Você pode postar agora e se registrar depois. Se você já tem uma conta, acesse agora para postar com sua conta.