in reply to Argument values
My first guess though would be that the problem is here in the main routine:
file_creation then converts $user_name as so:$user_name = em(param('name')); &file_creation($user_name);
The em function prints an <EM> tag, so $user_name ends up containing "EM>" plus the first character of the parameter value.$user_name = substr($user_name, 1, 4);
|
---|
Replies are listed 'Best First'. | |
---|---|
(ar0n) Re (2): Argument values
by ar0n (Priest) on Jul 23, 2001 at 23:14 UTC | |
by matrix_man (Initiate) on Jul 23, 2001 at 23:21 UTC |