mysql.class.php with executeQuery command

Questions about the MySQL, PostgreSQL, and most other databases, as well as using it with PHP can be asked here.

Moderator: General Moderators

Post Reply
eelcovn
Forum Newbie
Posts: 1
Joined: Mon Dec 12, 2005 7:26 am

mysql.class.php with executeQuery command

Post by eelcovn »

My ISP made a php-script with a mysql.class.php
They do not want to give me the code. Now I am not able to test and create my own additions.
Does any one know / has a class where with functions like

$r = $mydb->executeQuery($query);


$mydb->getRecords('mydb','cat_id',$cat[cat_id],'linkname,keyword1,keyword2,keyword3,url,status','prio');

Eelco
User avatar
Chris Corbyn
Breakbeat Nuttzer
Posts: 13098
Joined: Wed Mar 24, 2004 7:57 am
Location: Melbourne, Australia

Re: mysql.class.php with executeQuery command

Post by Chris Corbyn »

eelcovn wrote:My ISP made a php-script with a mysql.class.php
They do not want to give me the code. Now I am not able to test and create my own additions.
Does any one know / has a class where with functions like

$r = $mydb->executeQuery($query);


$mydb->getRecords('mydb','cat_id',$cat[cat_id],'linkname,keyword1,keyword2,keyword3,url,status','prio');

Eelco
Who was the class written for? Strange for them to refuse to let you see the code. It looks as if you're looking for a "MySQL Wrapper Class".

If you search in the code snippets forum here you'll find one ;)

There's also tools such as ADODB and ADODB-Lite.
Post Reply