$_post Not Passing Any Variables
I am constructing a advanced login system for one of my new projects, however the problem i am having is in the simplest part. the posted form data. The data from which is not bein
Solution 1:
The reason is that PHP uses the name
attribute. if your input is name = 'test'
that in PHP it would be $_POST['test']
Post a Comment for "$_post Not Passing Any Variables"