Code: http://pastebin.com/h8WuYbJn
Full error:
Fatal error: Call to undefined function AddUser() in C:\xampp\htdocs\scripts\steam.php on line 37
What exactly am I doing wrong? Everything should be right, but it isn’t (at least according to PHP).
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You don’t use the
.in PHP. Use->instead, eg:The
.is PHP’s concatenation operator, so it thinks you wantAnd of course
Adduser()is undefined.