Jump to content

what is the error


geekme

Recommended Posts

Following is my code, but when I run it in my browser i get a blank screen.Please help me debug as to where is the error.

<html>

<head>

  Creating objects

</head>

<body>

<?php

class Objects{

  var $name;

function set_name($na){

this->$name= $na;

}

function get_name(){

return this->$name;

}

}

$ob=new Objects;

$ob->set_name("ila");

echo "the name of greatest person alive is ",$ob->get_name();

?>

</body>

</html>

 

Link to comment
Share on other sites

Please use code or php tags around your code.

 

-Proper syntax for construction of an object is $ob = new Objects();

-In your function get_name, you need return $this->name;

 

When you get a blank page, there should be an error in your error log describing the problem (a syntax error in this case).

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.