I created a user model in Code Igniter.
class User extends CI_Model {
function __construct() {
parent::__construct();
}
public function new($username, $email, $password, $studentID="") {
$this->db->query("INSERT INTO user VALUES (0, '$username', '$email', '$password', '$studentID')");
}
}
However, I am getting this PHP error.
Parse error: syntax error, unexpected T_NEW, expecting T_STRING in /home/davidfaux/testApp/application/models/user.php on line 12
Line 12, by the way, is this line.
public function new($username, $email, $password, $studentID="") {
What is a T_NEW? Why am I getting the error?
public function newshould bepublic function newUser. New is for creating instances of classes. And the keyword cannot be used as a function name. BTW Isn´t your code highlighting already telling you this? – PeeHaa 埽 Mar 5 '12 at 23:17