user input of one php script pass to another php without modification in first php script
Posted
by ish12
on Stack Overflow
See other posts from Stack Overflow
or by ish12
Published on 2010-03-14T10:28:55Z
Indexed on
2010/03/14
10:35 UTC
Read the original article
Hit count: 1246
php
|user-input
hi all..
Consider two php scripts(o.php & t.php) o.php contains both html and php. html here gets user input for eg:user name and password this information is passed to php using php-self.
I want the user input of o.php passed to t.php without any modification in o.php.
I ve used include and require in the t.php but the problem is it displays the output of o.php but i need only the user input values from o.php without displaying the output of o.php.
Using functions or session in o.php we can pass user input but am in the situation tat i should not add or modify o.php.
thanks in advance!!
© Stack Overflow or respective owner