Jump to content

Who know how?


master101

Recommended Posts

That's a property in a class. To create something like that you can do it like...

 

 

//say you have a user class
class user {
 
public $username = '';
 
function user($username)
{
   $this->username = $username;
}
}
 
$user = new user('YourName');
echo $user->username;
Link to comment
https://forums.phpfreaks.com/topic/276147-who-know-how/#findComment-1421014
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.