ashiitk Posted September 27, 2007 Share Posted September 27, 2007 Hi, I have made a form form1.php- <form method="post" action="form2.php" > <input name="var" type="text"> <input type="submit" name="submit1" > I put in var="This is variable" in the next page form2.php - if($_SERVER["REQUEST_METHOD"]=="POST" && $_POST["submit1"]) { $var = $_POST["var"]; echo $var; } <form method="post" action="form3.php" > <input name="var" type="hidden" value="<?=$var?>"> <input type="submit" name="submit2"> I got the output - "This is variable" fine till now Then in next page form3.php - if($_SERVER["REQUEST_METHOD"]=="POST" && $_POST["submit2"]) { $var = $_POST["var"]; echo $var; } I got output - "This" Where all string gone ??? why it is showing only first word ??? please help Quote Link to comment https://forums.phpfreaks.com/topic/70946-error-in-transferring-value-got-from-a-form-to-the-other-form/ Share on other sites More sharing options...
marcus Posted September 27, 2007 Share Posted September 27, 2007 View the HTML in form2.php and see what it shows. Quote Link to comment https://forums.phpfreaks.com/topic/70946-error-in-transferring-value-got-from-a-form-to-the-other-form/#findComment-356641 Share on other sites More sharing options...
darkfreaks Posted September 27, 2007 Share Posted September 27, 2007 wrong post~ Quote Link to comment https://forums.phpfreaks.com/topic/70946-error-in-transferring-value-got-from-a-form-to-the-other-form/#findComment-356642 Share on other sites More sharing options...
marcus Posted September 27, 2007 Share Posted September 27, 2007 Wrong topic buddy. Quote Link to comment https://forums.phpfreaks.com/topic/70946-error-in-transferring-value-got-from-a-form-to-the-other-form/#findComment-356643 Share on other sites More sharing options...
darkfreaks Posted September 27, 2007 Share Posted September 27, 2007 as Teal'c from Stargate would say INDEED Quote Link to comment https://forums.phpfreaks.com/topic/70946-error-in-transferring-value-got-from-a-form-to-the-other-form/#findComment-356667 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.