A
Anonymous
Guest
Hello,
I think there is one problem with your "budg_update.php" file.
I have seen the code you have posted here. As I can read you have space in the $_POST['your variable']
You should use underscore or camel later type like
In the form
==================
In the form post method, to see your form values your should use
I am sure you will get your error...
Thanks
http://mukeshvariya.blogspot.com
Customize Application Developement Ahmedabad Gujarat India
I think there is one problem with your "budg_update.php" file.
I have seen the code you have posted here. As I can read you have space in the $_POST['your variable']
You should use underscore or camel later type like
In the form
Code:
<form name="fmrName">
<input type="text" name = "your_name" />
<input type="submit" name = "btnSubmit" value = "Submit Form" />
</form
In the form post method, to see your form values your should use
Code:
print "<pre>"
print_r($_POST)
print "</pre>"
I am sure you will get your error...
Thanks
http://mukeshvariya.blogspot.com
Customize Application Developement Ahmedabad Gujarat India