cyber_ghost Posted January 5, 2008 Share Posted January 5, 2008 hi guys...... here im am again... asking your ideas...... ah..... im current working in the IIS/PHP as i migrating the a shopping cart program..... from xampp to php/iis ... my problem here is that $_POST[] can display $_OST data from the form.... here is my code ------------------------------------------- myform.html <form method="post" name="cute"> <input name="c_size" value="" > </form> ----------------------------------------- receive.php <?php echo $_POST; ?> in xampp in working properly.... but in PHP/IIS it display nothing.... I think the configuration matters..? php.ini >> POST_MAX_SIZE = 8m ... please help me guys...... Link to comment https://forums.phpfreaks.com/topic/84583-solved-_post-in-iisphp/ Share on other sites More sharing options...
trq Posted January 5, 2008 Share Posted January 5, 2008 You have no filed in your form called size. Your php code should be... <?php echo $_POST['c_size']; ?> Also note that you really ought check your form was actually submitted before trying to display any data it may have sent. To do that, you need.... myform.html <form method="post" name="cute" action="recieve.php"> <input name="c_size" value="" > <input type=submit" name="submit"> </form> recieve.php <?php if (isset(_POST['submit'])) { echo $_POST['c_size']; } ?> Next time you post code can you please post your actual code and place it within tags. Link to comment https://forums.phpfreaks.com/topic/84583-solved-_post-in-iisphp/#findComment-431013 Share on other sites More sharing options...
cyber_ghost Posted January 5, 2008 Author Share Posted January 5, 2008 sorry guys..... but the thing you been typing is the thing i meant to type.... sorry.. i left for a while.... im experiencing LBM...... hehehe Link to comment https://forums.phpfreaks.com/topic/84583-solved-_post-in-iisphp/#findComment-431014 Share on other sites More sharing options...
trq Posted January 5, 2008 Share Posted January 5, 2008 sorry guys..... but the thing you been typing is the thing i meant to type.... sorry.. i left for a while.... im experiencing LBM...... hehehe What? Link to comment https://forums.phpfreaks.com/topic/84583-solved-_post-in-iisphp/#findComment-431015 Share on other sites More sharing options...
cyber_ghost Posted January 5, 2008 Author Share Posted January 5, 2008 i mean.. that the information you posted above.. is the thing i meant to write... sorry for this..... i didnt make clarification and verification before posting......... im experiencing unstable stomach..... LBM (less bowel movement)as they say....... sorry... meanwhile.... about the problem... is there other configuration needs to be considered about $_POST[] in IIS problem? Link to comment https://forums.phpfreaks.com/topic/84583-solved-_post-in-iisphp/#findComment-431024 Share on other sites More sharing options...
PFMaBiSmAd Posted January 5, 2008 Share Posted January 5, 2008 The problem is most likely due to php configuration differences between the two systems. That is about all anyone can tell you based on the information you have provided. You need to post accurate code (form and form processing), because we cannot really help you if we cannot see the code that is causing the stated symptoms. There could be half a dozen different things that could cause the same symptoms you are getting. Link to comment https://forums.phpfreaks.com/topic/84583-solved-_post-in-iisphp/#findComment-431033 Share on other sites More sharing options...
PFMaBiSmAd Posted January 5, 2008 Share Posted January 5, 2008 One of the things can can prevent all $_POST variables from being set is if the total size exceeds the POST_MAX_SIZE setting or if the POST_MAX_SIZE setting is invalid and is actually a very small value. In your first post, you show "8m". Is that EXACTLY what the setting is or is it actually 8M (upper case M)? There is a specific difference between 8m and 8M. The first is invalid syntax and means 8 bytes. Link to comment https://forums.phpfreaks.com/topic/84583-solved-_post-in-iisphp/#findComment-431036 Share on other sites More sharing options...
cyber_ghost Posted January 5, 2008 Author Share Posted January 5, 2008 i already set in the 8M but work same... Link to comment https://forums.phpfreaks.com/topic/84583-solved-_post-in-iisphp/#findComment-431050 Share on other sites More sharing options...
PFMaBiSmAd Posted January 5, 2008 Share Posted January 5, 2008 So, did you stop and start the IIS service in the control panel to get any changes made to php.ini to take effect? Just stopping and starting the web server in the management console does not cause php to reload and read the php.ini file. Also, create a .php file with a phpinfo(); statement in it and browse to this file, then search/scroll down to find what the actual setting is. Link to comment https://forums.phpfreaks.com/topic/84583-solved-_post-in-iisphp/#findComment-431053 Share on other sites More sharing options...
cyber_ghost Posted January 5, 2008 Author Share Posted January 5, 2008 yes... i already stop and start procedure... but... nohing change... Link to comment https://forums.phpfreaks.com/topic/84583-solved-_post-in-iisphp/#findComment-431055 Share on other sites More sharing options...
trq Posted January 5, 2008 Share Posted January 5, 2008 Post your actual code. Link to comment https://forums.phpfreaks.com/topic/84583-solved-_post-in-iisphp/#findComment-431065 Share on other sites More sharing options...
PFMaBiSmAd Posted January 5, 2008 Share Posted January 5, 2008 Also, still kind of waiting on confirmation of what the actual value is - Also, create a .php file with a phpinfo(); statement in it and browse to this file, then search/scroll down to find what the actual setting is. Link to comment https://forums.phpfreaks.com/topic/84583-solved-_post-in-iisphp/#findComment-431082 Share on other sites More sharing options...
cyber_ghost Posted January 7, 2008 Author Share Posted January 7, 2008 this is the actual code ---------------------------- form.html <form name="myform" action="record.php" method="post"> <input name="user" type="text"> <input name="pass" type="text"> <input type="submit" value="submit"> </form> -------------------------------/ form.html ------------------------------- record.php echo $_POST[user]; echo $_POST[pass]; -------------------------------/ record.php Link to comment https://forums.phpfreaks.com/topic/84583-solved-_post-in-iisphp/#findComment-432271 Share on other sites More sharing options...
redarrow Posted January 7, 2008 Share Posted January 7, 2008 ---------------------------- form.html <form name="myform" action="record.php" method="post"> <input name="user" type="text"> <input name="pass" type="text"> <input name="submit" type="submit" value="submit"> </form> -------------------------------/ form.html ------------------------------- record.php <?php $user=$_POST['user']; $pass=$_POST['pass']; if($_POST['submit']){ echo "$user <br> $pass"; } -------------------------------/ record.php Link to comment https://forums.phpfreaks.com/topic/84583-solved-_post-in-iisphp/#findComment-432273 Share on other sites More sharing options...
cyber_ghost Posted January 7, 2008 Author Share Posted January 7, 2008 thank you................ it working...... hehehh Link to comment https://forums.phpfreaks.com/topic/84583-solved-_post-in-iisphp/#findComment-432297 Share on other sites More sharing options...
redarrow Posted January 7, 2008 Share Posted January 7, 2008 anythink you do to php.ini you must re-start php before it takes it new effect so yes....... Link to comment https://forums.phpfreaks.com/topic/84583-solved-_post-in-iisphp/#findComment-432298 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.