<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Books</title>
</head>
<body>
<?php
class Book
{
var $pBookTitle;
var $pISBN;
Public $title;
Public $isbn:
function DisplayBook($pBookTitle, $pISBN)
{
// Display book data to web page.
$this->title = pBookTitle;
$this->isbn = pisbn;
echo $this->title ."<br />";
echo $this->isbn . "<br />";
}
}
$book = new Book();
$book->DisplayBook("PHP and MySQL Web Development", "978-0-672-32916-6");
?>
</body>
</html>
$this->title = pBookTitle;
$this->isbn = $pisbn;
echo $this->$pBookTitle ."<br />";
echo $this->isbn . "<br />";
--
This group is managed and maintained by the development staff at 360 PSG. An enterprise application development company utilizing open-source technologies for todays small-to-medium size businesses.
For information or project assistance please visit :
http://www.360psg.com
You received this message because you are subscribed to the Google Groups "Professional PHP Developers" group.
To post to this group, send email to Professi...@googlegroups.com
To unsubscribe from this group, send email to Professional-P...@googlegroups.com
For more options, visit this group at http://groups.google.com/group/Professional-PHP
On Saturday, August 28, 2010, Cecil Champenois
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Books</title>
</head>
<body>
<?php
echo "Date: " . date("F jS, Y")."<br />";
print date("m/j/Y")."<br />";