Problems to get variables

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
RIGOLETO
Forum Commoner
Posts: 37
Joined: Fri Nov 20, 2009 10:13 am

Problems to get variables

Post by RIGOLETO »

Hi There,

I need your help, I have a PHP-HTML code just like sample below, my problems is that I am calling a new PHP program (showpdf_2.pdf) and I need to get some VARIABLES from the program called, in this case I am POST a variable called Search, but the Function is populating a new one, but when the program back to the main program I am missing the value of those variables

Code: Select all

 
 <div id="position" >
        <form method="POST" action="showpdf_2.php">
            <input type="text" name="Search" value="" /><input type="submit" value="Search ASN#" />
            <input type="submit" value="Refresh" />
        </form>
    </div>
 
jojonage
Forum Newbie
Posts: 9
Joined: Fri Nov 13, 2009 9:10 pm

Re: Problems to get variables

Post by jojonage »

can you post also your code from showpdf_2.php?
Post Reply