in reply to Argument values

Hello,

You have this code:

 if (param) 
  {
    $user_name = em(param('name'));
    &file_creation($user_name);
  }
If your CGI script is passed "John" for the "name" field, you'd be calling file_creation("<EM>John</EM>"); which doesn't look like what you wanted to do.

Remove the "em" and see what happens

Hope this helps,,,

Aziz,,,