A few missing pieces in your code.  Take a look below within your class.  I 
corrected it.

try also using include_once instead of require

and make sure that your error level and reporting are turned on so you can see 
what is happening.


Patrik Hasibuan wrote:
Dear my friends,

This is the first time for me to use OOP concept of PHP. I wrote still a very simple 
codes but it doesn't work as my manual book taught. the book titled "MySQL/PHP 
Database Application" by Jay Greenspan say these lines should work but in fact it 
don't work as expected.
Here is my code:
===============================
//pelangganbaru.php
<?php
require "koneksi.php";
$sqlnya="select country from countries";
$klas=new koneksi($sqlnya);
?>
===============================
//koneksi.php
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

<HTML>
<HEAD>
  <META name="generator" content="HTML Tidy for Linux/x86 (vers 31 October 2006), see 
www.w3.org">

</HEAD>

<BODY>
<?php
class koneksi{
$namakompie="127.0.0.1";
var $namakompie='127.0.0.1';
$un="root";
var $un='root';
$pw="mysqlpw";
var $pw='mysqlpw';
$sqlnya;
var $sqlnya;
$kueri;
var $kueri;

function koneksi($sqlnya){
echo "superclass koneksi dipanggil<br>";
$konek=mysql_connect("$namakompie","$un","$pw");
$konek=mysql_connect($this->namakompie, $this->un, $this->pw);
if ($konek){
        echo "koneksi berhasil (connection succeeded)<br>";
        $mybd=mysql_select_db("survey",$konek);
        $kueri=mysql_query($sqlnya,$konek);
}else{
        echo "I can't talk to the server<br>";
        exit();
}
return $kueri;
}

}
?>
</BODY>
</HTML>
=====

Theoritically if Class "koneksi" is being initialized than it prints "koneksi 
berhasil (connection succeeded)" but it doesn't.

Please tell me what is my mistake.

Thank you very much in advance.


--
Jim Lucas

   "Some men are born to greatness, some achieve greatness,
       and some have greatness thrust upon them."

Twelfth Night, Act II, Scene V
    by William Shakespeare

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to