06-19-2016, 07:21 PM
The join.php form is a little bit more complicated than the other forms in userspice. Basically, you want to add a new field to the join form, let's say "address."
Then you want to make a new column in the users table called "address."
Then the quickest thing to do is to go into classes/User.php and in the create method add a line like
That's the quick and dirty way to do it.
Then you want to make a new column in the users table called "address."
Then the quickest thing to do is to go into classes/User.php and in the create method add a line like
Code:
$query3 = $this->_db->insert("users",['address'=>$address);
That's the quick and dirty way to do it.