I'm trying it on my local computer and local server and connecting locally to my server also developing it on the same computer

everything is local..
From a friend advice i try function
get_user_name:
PHP Code:
public client_putinserver(id)
{
new rate[32]
get_user_info(id, "rate", rate, 31)
new name[32];
get_user_name(id, name, 31);
log_amx("Client %d(%s)'s %s is %s", id, name, "rate", rate)
}
and on the log its written like:
PHP Code:
L 10/16/2007 - 00:34:04: [test.amxx] Client 1(Player)'s rate is 7000
but i try this one:
PHP Code:
public client_putinserver(id)
{
new zoom_sensitivity_ratio[32]
get_user_info(id, "zoom_sensitivity_ratio", zoom_sensitivity_ratio, 31)
new name[32];
get_user_name(id, name, 31);
log_amx("Client %d(%s)'s %s is %s", id, name, "zoom_sensitivity_ratio", zoom_sensitivity_ratio)
}
and the log is:
PHP Code:
L 10/16/2007 - 00:37:04: [test.amxx] Client 1(Player)'s zoom_sensitivity_ratio is
Now whats the problem
?