Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,890 questions

51,817 answers

573 users

How to create a simple class in PHP

1 Answer

0 votes
class CBooks {
  public function name() {
    echo "Learning PHP, MySQL & JavaScript: With jQuery, CSS & HTML5" . "<br />";
  }
  public function edition() {
    echo "5th Edition" . "<br />";
  }
  public function author() {
    echo "Robin Nixon" . "<br />";
  }  
  public function price(){
    echo "$35" . "<br />";
  }
}

$obj = new CBooks();

$obj->name();
$obj->edition();
$obj->author();
$obj->price();

     
/*
run:
 
Learning PHP, MySQL & JavaScript: With jQuery, CSS & HTML5
5th Edition
Robin Nixon
$35
 
*/

 



answered Jul 8, 2018 by avibootz

Related questions

1 answer 185 views
185 views asked Jun 28, 2015 by avibootz
2 answers 225 views
1 answer 174 views
1 answer 389 views
1 answer 45 views
1 answer 145 views
...