In response to the get request, I want to give the user with ID 1:
mysql_select_db("certificate"); $user = get_userdata(1); echo $username = $user->get('user_login');
But nothing comes in response, tell me what could be the problem?
In response to the get request, I want to give the user with ID 1:
mysql_select_db("certificate"); $user = get_userdata(1); echo $username = $user->get('user_login');
But nothing comes in response, tell me what could be the problem?
Source: https://ru.stackoverflow.com/questions/952393/
All Articles