You might want to think about client side validation as well.
This infomrs the user of any probelms *before* it hits your server.
Now, this does *not* remove the step of form value checking on the server.
Check out...
http://groups.yahoo.com/group/javascript_validation/
A nice little clien
Chris W wrote:
Sungpill Han wrote:
HI, i want to check if the user filled the all inputs in the form. So, I
checked NULL and "" with this function in the post receiving script.
---
function is_filled_out()
{
// test that each variabl has a value
foreach($_POST as $ke
Sungpill Han wrote:
HI, i want to check if the user filled the all inputs in the form. So, I
checked NULL and "" with this function in the post receiving script.
---
function is_filled_out()
{
// test that each variabl has a value
foreach($_POST as $key => $value)
{
3 matches
Mail list logo