how do i accept special character like"#" to be inserted into the database???
thanks annie
I don't recall ever having problems insertin a # into a database, but you might try using the addslashes() function to escape the special characters.
Check out the manual for more info about addslashes();
supposeu wanna insert "#@"; take $var = "/#/@"; then do... escapeshellcmd($var);
and then insert $var in the table....
I think this will do.... rgds... Kaushik