i m working on a linux server and my part of the code is this-
$post = mysql_real_escape_string($_POST['post']);
echo $post;
but my $post variable is not getting printed. and when i print $post variable without using mysql_real_escape_string function ,it is working. i.e.
echo $post;
its a weird problem . can anyone please tell me the reason behind it????? I have checked the availability of the mysql_real_escape_string function and this function exists on the server.