Hello, In every form i have 5-7 inputs. (method="post") I always use long procedure Like this: $username = $_POST['username']; Is there any possibility to reduce this long phrases? Thanks
Hi, Instead of using it with every post variable, you just need to add at the top of your PHP code the following code: http://www.pasteit.in/132 Then you will not need to define username as $_POST in the script.