1
I’m starting programming in PHP and I have a page in PHP and I want a send a variable to an ASP page.
The problem is that I am not able to send the variable $codselecionado
, if I put the value in hand, it is right, the ASP page identifies this value and the progress in the project
echo '<iframe name="atualizaguia1" allowfullscreen=true frameborder=0 src="atualizaguia1.asp?codtitulo=52022" target="_self" scrolling=auto>';
I wonder what I’m doing wrong in this shipment
echo '<iframe name="atualizaguia1" allowfullscreen=true frameborder=0 src="atualizaguia1.asp?codtitulo=$codselecionado" target="_self" scrolling=auto>';
The variable $codselecionado
is correctly filled with the value, I’ve done several tests on it.
Friend, post the code you’ve developed so far so we can help you.
– Maycon F. Castro