Jump to content

finisher1017

New Members
  • Posts

    3
  • Joined

  • Last visited

finisher1017's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Never mind. I emptied my localhost folder and recreated the files from scratch and it works on Ubuntu now as well. There must have been some type of conflict with other files in the folder, but its been resolved.
  2. I noticed that too and tried it with the () in both objects but it still doesn't work on the Ubuntu, even though it works fine in Windows. I'm not getting any errors from Ubuntu, it just won't echo the data from the objects, instead I just get a blank page. It appears that the browser is loading the page, just with no output.
  3. I just started studying object oriented PHP using the begginers tutorial from this site. Using the files below I am having trouble getting the browser to echo the names. I am using an Ubuntu LAMP server with the geany IDE installed and have not had issues with any other pages. Using the same code I was able to get the names to echo successfully on a Windows machine with XAMPP and the Zues IDE installed. I feel like the builds and different IDEs shouldn't matter since I've been able to get all my other pages to work on both machines, so it must be something small I'm overlooking. Any suggestions would be appreciated. //file used to create class "class_lib.php" <?php class person { var $name; function set_name($new_name) { $this->name = $new_name; } function get_name() { return $this->name; } } ?> //file used to retrieve objects and echo data "index.php" <?php include("class_lib.php"); ?> </head> <body> <?php $stefan = new person(); $jimmy = new person; $stefen->set_name("Jonathan Seubert"); $jimmy->set_name("Nick Waddles"); echo "Jonathan's full name: " . $stefan->get_name(); echo "Nick's full name: " . $jimmy->get_name(); ?> </body> </html>
×
×
  • Create New...