Jump to content

Recommended Posts

Hey guys need help.. I am new in Php OOP programming I am making my connections and queries as OOP here is my code:

 

 

class_lib.php

<?php 

class Mysql_conn { 
var $conn; 

function __construct($hostname,$dbuser,$dbpword,$dbname) { 
	$this->conn = mysql_connect($hostname,$dbuser,$pword,true);
	mysql_select_db($dbname,$this->conn);
}

function query($query){ 
	$result = mysql_query($query,$this->conn)or die('error getting data:'.mysql_error());
	return $result;
}
} 
?>

 

 

And here is my index.php


$db1 = new Mysql_conn("localhost","root","","databasename1");
$db2 = new Mysql_conn("localhost","root","","databasename2"); 

$query = $db1->query("SELECT * FROM tablename");	


 

 

if the query encounter an error such as field name not present,mispelled name or logical error it will not return any error messagge that i have a hard time debugging were the error is...

 

 

but if I have only one database it works fine but in that case that i have two databases that's when the problem occur.... tnx in advance

Link to comment
https://forums.phpfreaks.com/topic/241385-php-oop-queries-and-connection/
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.