I'm a newbie and trying to code a simple plugin.
Unfortunately, it doesn't work with client_print, but worked properly with server_print

I don't know what is my mistake
PHP Code:
#include <amxmodx>
public plugin_init()
{
register_plugin("Welcome Message", "1.0", "Test123")
}
public client_connect(id)
{
new ten_player[128]
get_user_name(id, ten_player, 127)
client_print(id, print_chat, "Welcome %s to our Server", ten_player)
}