bleustreak12 Posted March 24, 2012 Share Posted March 24, 2012 0 down vote favorite share [g+] share [fb] share [tw] In my html I have <input type="hidden" name="Code_value" value="xyz"> <input type="hidden" name="Code_value" value="abc"> <input type="hidden" name="Code_value" value="rst"> when i submit I take it in my ASp.net code I take them as string Items = Request.Form["Code_value"]; the value of Items is xyzabcrst in PHP $Items=$_POST['Code_value']; The value of items is rst It takes the last value in php is it because there are multiple Code_value items if so why is it not taking just the last value in Asp.net Quote Link to comment https://forums.phpfreaks.com/topic/259615-post-in-php-and-aspnet/ Share on other sites More sharing options...
requinix Posted March 24, 2012 Share Posted March 24, 2012 Because ASP.NET does things differently than PHP, of course. If you cannot modify the form then you'll have to parse the query string or form data yourself. That's not fun. If you can then change the name to Code_value[] and $_POST["Code_value"] will be an array. Quote Link to comment https://forums.phpfreaks.com/topic/259615-post-in-php-and-aspnet/#findComment-1330695 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.