Jump to content
Fórum Script Brasil
  • 0

variável PHP para HTML


mauror

Question

Preciso transferir o valor da variável PHP $cod=1234 existente em uma página para uma variavel input do HTML nomeada como COD_P, em outra página.

Tentei o seguinte: <input name="COD_P" type="text" id= "COD_P" size="10" value="<?php echo $cod; ?">

Com esse código, a variável da página HTML assume o valor <?php echo $cod; ? e não o esperado 1234

Se retiro as aspas, o valor passa a ser <?php

Agradeço toda ajuda.

Edited by mauror
Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

Olá Mauror,

para que funcione, a sua página tem que ser em PHP ou PHTML. Veja também o código abaixo:

<input name="COD_P" type="text" id= "COD_P" size="10" value="<?php echo $cod; ?">
Tente colocar dessa forma:
<input name="COD_P" type="text" id= "COD_P" size="10" value="<?php echo $cod; ?>">

abs

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...