Jump to content

Undefined variable


PieceOfMeat

Recommended Posts

Hello everyone

This is my code:

<?php

class Customer
{
	public $name = "name";
	public $phone = "phone";
	public $mail = "mail";

	public function setName($n)
	{
		$this->name = $n;
	}

	public function getName()
	{
		return $this->name . "<br />";
	}
	public function setPhone($p)
	{
		$this->$phone = $p;
	}

	public function getPhone()
	{
		return $this->$phone . "<br />";
	}
	public function setMail($m)
	{
		$this->$mail = $m;
	}

	public function getMail()
	{
		return $this->$mail . "<br />";
	}
}


$a = new Customer;



echo $a->getName();
echo $a->getPhone();
echo $a->getMail();
 
$a->setName("A");
$a->setPhone("2818");
$a->setMail("gmail.com");

 
echo $a->getName();
echo $a->getPhone();
echo $a->getMail();

?>

 

for some reason i get error for the phone and mail variables:

Notice: Undefined variable: phone in /home/stud/2011/3/avile/public_html/ex1a/index.php on line 26

Fatal error: Cannot access empty property in /home/stud/2011/3/avile/public_html/ex1a/index.php on line 26

 

But i dont get this error for the name variable. Is somebody know why?

Link to comment
Share on other sites

Another tip: You should not add HTML tags to the values returned by the class. Adding markup is solely the view's (template) responsibility.

That way, you only need to replace the view to output your data to a different system, instead of rewriting the entire application. Embedding presentation logic into the business logic, as you've done above, means you've just about ensured that you'll have a major rewrite on your hands. Every time your want to change how things look.

Edited by Christian F.
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.