sparky Posted December 30, 2010 Share Posted December 30, 2010 It has been a while since I have done much programming at all, and where I know I have been through this before I am getting an "Undefined Varible Error" Where this works coming from a form submission: echo $_POST["co1"]; echo $_POST["co2"]; echo $_POST["co3"]; This does not work: $s1 = $_post["co1"]; $s2 = $_post["co2"]; $s3 = $_post["co3"]; What stupid function am I overlooking or doing wrong. Thanks in advance. John Quote Link to comment https://forums.phpfreaks.com/topic/223021-undefined-varible-error/ Share on other sites More sharing options...
Pikachu2000 Posted December 30, 2010 Share Posted December 30, 2010 Variables are case-sensitive. $_POST exists, $_post does not. Quote Link to comment https://forums.phpfreaks.com/topic/223021-undefined-varible-error/#findComment-1153070 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.