Anyone Know Of A Really Good Mysql Class? - Looking for something easy but full featured.

free web hosting
Free Web Hosting > Computers & Tech > Programming > Scripting > PHP

Anyone Know Of A Really Good Mysql Class? - Looking for something easy but full featured.

vujsa
Generally speaking, when I write a script, it either utilizes the MySQL class of the parent system (like Mambo or Joomla) or I use basic functions and snippets to perform the database queries I need. I really like the Joomla database class as it allows you to simply pass a regular query string to it and the data is returned without the need for extra work!

The Invision Power Board (IPB) database class which is what is used for this forum is kind of a pain to use since it wants the query string in a non-MySQL standard format. Nonetheless, it does work and I could use it if I needed but it isn't open source and I don't like to barrow in this manner since I don't like for people to barrow some of my stuff in that way.

The SMF (Simple Machines Forum) database function is a joke for the older version I checked. Maybe I should check a newer version but I get the feeling that I won't be much happier.

I have found a few open source classes written but they tend to require more than the database query to be sent. For example:
CODE
$sql = "SELECT * FROM `users`"
$result = $db -> Select($sql);

-OR-
CODE
$sql = "INSERT INTO players (`f_name`, `l_name`,`position`) VALUES ('Peyton','Manning','Quarterback')"
$result = $db -> Insert($sql);


See how each MySQL query type has it's own function in the class.
Another script I found uses a slightly different method to specify the query type:
CODE
$result = $database->query('SELECT',$sql);


What I really want is just this:
CODE
$sql = "SELECT * FROM `users`"
$result = $database->query($sql);

-OR-
CODE
$sql = "INSERT INTO players (`f_name`, `l_name`,`position`) VALUES ('Peyton','Manning','Quarterback')"
$result = $database->query($sql);


I don't mind if there are optional arguments in the function call but I want to be able to use a single function call for all of my queries like in Joomla.

I considered, since it is open source, using the core of the Joomla database class but it has so much specific Joomla code in it and a large chunk of the code is not related to anything I need. I think the biggest plus to using the Joomla database class is that it is relatively secure and has ALL of the error checking built in which is something I tend to get too lazy to do.

So, if anyone has a really good open source MySQL class that they use that would work for me, let me know. Otherwise I'll have to go ahead and write one this weekend. I'm pretty sure I can hammer something out pretty quickly but like I said, I'm lazy and would rather use something already made.

Thanks,

vujsa

 

 

 


Reply

vizskywalker
I don't know of any such class, but would be willing to help write one if I have time and you need or want some help. It does sound like a good idea.

~Viz

Reply

vujsa
Well, I started modifying one of the scripts I found to do the job.

The first thing I did was strip out all of the excess code. Much of the code seemed to be for features that would only be used if you wanted to create an system like phpMyAdmin! I didn't see any reason to leave the code to do SHOW, DESCRIBE, and EXPLAIN. Also, I didn't need a database create option nor a database select option.

I removed about 50 lines of code and added error checking for DELETE, INSERT, and UPDATE. It isn't the best possible class I could come up with I'm sure but it looks like it will work for now.

I thought about doing the class for PHP 5 using the mysqli functions but it seems that support for that is somewhat limited and I can't say for sure what MySQL and PHP versions the script may end up on. The mysqli extensions seem to be a lot easier to manage but that'll have to wait until I get more time. I guess it would be best if I wrote both then had the master script choose the best class for the server settings like Joomla does.

Incidentally, I got the base code from here:
http://www.jemts.com/index.php?pl=scripts&pg=dbclass
Note the following statement:
QUOTE
Fell free to edit or enhance this class in anyway, I would love to see any improvements anyone can make.


Here is what it looks like now:
CODE
<?php
//////////////////////////////////////////////////////////////////////////////////////
/* DBClass v1.3 written by Matthew Manela
   Script orginally written for www.Jemts.com
   Copyright (C) 2003 Matthew Manela. All rights reserved.
   See readme file for instructions on implementing and using this class.
   If you have any question about this script please email me at jemts@jemts.com.
   Updates to this class will come regularly.    
*/
//////////////////////////////////////////////////////////////////////////////////////
//Start of class
class Database{
    var $DBname, $DBuser, $DBpass, $DBhost;
    var $DBlink, $Result;
    var $Connection;

    ###########################################
    # Function:    Database - constructor
    # Parameters:  database name, database username, database password, database host
    # Return Type: boolean
    # Description: connect to database, and select database, if database doesn't exist create it and selects it
    ###########################################
    function Database($name, $user, $pass, $host){
        $this->DBname=$name;
        $this->DBuser=$user;
        $this->DBpass=$pass;
        $this->DBhost=$host;
        if(!($this->DBlink = mysql_connect($this->DBhost, $this->DBuser, $this->DBpass))){
            echo mysql_errno() . ": " . mysql_error() . "\n";
            trigger_error ("Cannot connect to database", E_USER_ERROR);
            return FALSE;
        }else{
            if(!mysql_select_db($this->DBname,$this->DBlink)){
                echo mysql_errno() . ": " . mysql_error() . "\n";        
                trigger_error ("Cannot connect to database", E_USER_ERROR);
                return FALSE;
            }else{
            return TRUE;
            }
        return TRUE;
        }
    }#end of database constructor
    //////////////////////////////////////////////////////////////////////////////////////



    ###########################################
    # Function:    Disconnect
    # Parameters:  none
    # Return Type: boolean
    # Description: disconnects from database
    ###########################################
    function Disconnect(){
        if(mysql_close($this->DBlink)){  
        return TRUE;
        }else{
        echo mysql_errno() . ": " . mysql_error() . "\n";
        trigger_error ("Cannot close the database", E_USER_ERROR);
        return FALSE;
        }
    }#end of disconnect
    //////////////////////////////////////////////////////////////////////////////////////



    ###########################################
    # Function:    Query
    # Parameters:  sqlstring , type
    # Return Type: Either boolean or array depending on type of query
    #               If it is a delete query returns number of rows affected
    # Description: executes any SQL Query statement
    ###########################################

    function Query($Query){
        $Query = trim($Query);
        if(eregi("^((SELECT))",$Query)){
            if($this->Result = mysql_query($Query,$this->DBlink)) {
                while ($row = mysql_fetch_array($this->Result)) {
                    $data[] = $row;
                }
                mysql_free_result($this->Result);//probably not needed
                return $data;
            }else{
                //no entry exists in database
                return FALSE;
            }
        }else{
            $result = mysql_query($Query,$this->DBlink);
            if(!isset($result) || is_null($result)){
                echo mysql_errno() . ": " . mysql_error() . "\n";
                trigger_error ("Query did not succeed", E_USER_ERROR);
                return FALSE;
            }
            elseif(eregi("^((DELETE)|(INSERT)|(UPDATE))",$Query)){
                if(@mysql_affected_rows() < 1){
                    echo mysql_errno() . ": " . mysql_error() . "\n";
                    trigger_error ("Query did not succeed", E_USER_ERROR);
                    return FALSE;
                }else{
                    return @mysql_affected_rows();
                }
            }else{
                 return true;
            }
        }
    }#end of query function

}#End of class
?>

<?php
$database= new Database("DatabaseName","DatabaseUser","DatabasePass","DatabaseHost");
//$rows = $database->Query("INSERT INTO jos_jstats_iptocountry (IP_FROM,IP_TO,COUNTRY_CODE2,COUNTRY_NAME) VALUES ('321321','321321','RR','Whatever')");
//$rows = $database->Query("DELETE FROM jos_jstats_iptocountry WHERE IP_FROM = '321321'");
$rows = $database->Query("SELECT * FROM jos_jstats_iptocountry");
echo "<pre>";
print_r($rows);
echo "</pre>";
$database->Disconnect();        
?>


Actually, there is a large number of classes written for this subject but I don't have the time to download, review, test, and play around with each one.

For the quick list:
http://php.resourceindex.com/Functions_and...ase_Management/

Do you have any suggestions?

Thanks for the reply.

vujsa

 

 

 


Reply

Quatrux
Some time ago I went through mediawiki source and saw their database class, thought that I need something like that and wrote it by taking things/ideas out of them, I changed lots of stuff to fit my purpose, but I never completely used it so it can be with bugs and etc. So you can see how it works by looking into mediawiki too, moreover the new versions might have better class, I mean they should have updated it to work even better, but most of mediawiki people use objects rather than arrays. ;]

Reply

vujsa
Thanks for the information. I'll check it out and see if I can clean it up enough for a general purpose MySQL class.

The best part about using such a class is even if I find a better one later, I should be able to replace the one I'm using now with little trouble. I mean, since I only want the class to return an array, TRUE, or FALSE with an error; the method by which the class gets it's out put isn't as important.

So while I investigate better class options, I think I'll begin work on the project that will use the class I am looking for. Since the project is meant to only be a demo and I'll have to make a pitch to "sell" it, I don't want to get too wrapped up with one little class that could be replaced later.

The project is a data manipulation system for maintaining a number of records on a daily basis. Due to a number of factors, it will mostly be proprietary but the database class can be very general as long as it works exceptionally well!

So, I'll look into the MediaWiKi database class. I guess that there are a number of really good open source projects out there that would use such a class but It'll take time to find the most suitable one.

vujsa

Reply


Got an Opinion! Express your Views! (no registration):-
Add your Reply/ Opinion/ Views/ Comments/ Suggestion/ Questions/ Queries etc.
Posts with decent grammar & English will be accepted and please refrain from profanities.
For asking a Question, We recommend you to sign-up (for free) so that you can track the topic easily.

Nature of your Post*: Opinion/ Reply/ Comments
Question/Query
Feedback to us.
       
Name   Email
Title/Question*

(Maximum characters: 10,000)
You have characters left.

Similar Topics

Keywords : good, mysql, class, easy, full, featured,

  1. Letting Users Add Mysql Data With Php
    (1)
  2. Mysql Question(inserting Number From A Textfield)
    (3)
    Hey! I am trying to do a "Admin give EXP script". But I can't make it work. The value is
    not updating, but the update query is correct.( I think:P) I think the fault is here: CODE
    $expcomp=$givexpp['exp'] += $givexp; The $givexp is the
    variable for the amount of Xp the admin wants to give. the $givexpp is the variable for the
    user info (in this case, the experince he already have). The datatype for the XP in the database is
    INT. So I have no idea if it can take data from a normal textfield. If you need to see all....
  3. Making Something In Mysql Happen Only Once
    (10)
    Hey! I know I am asking alot. But much is happening theese days. Sorry if I disturb with my
    questions. The thing I am trying to do is: Ex. If the user becomes level 2, he should get 5 skill
    points. I can't do this: CODE if($userlevel=5){ mysql_query("UPDATE
    user SET skillpoints =$points+5");} because then it would update everytime the code
    was loaded. I hope you understand what I am trying to do. If not, tell me /smile.gif"
    style="vertical-align:middle" emoid=":)" border="0" alt="smile.gif" /> and i'll try to explain....
  4. Making A Link = Mysql_query
    (8)
    Hey! I will try to make this as clear as possible. how can I make the following. I have a
    list, of all members on my site. If I press on a members name(link), I will come to his profile. To
    come to his profile, I need to get out some vaule from the database, but to get out some value from
    the database, I must tell the code, how it should know who the user is (hard to understand?). To do
    that, I must add a mysql_query in the code ( I think), like "SELECT user FROM dbname WHERE
    user=link".. This is just how I think it works. I know it is kinda wrong.. but I don'....
  5. Warning: Mysql_result(): Supplied Argument Is Not A Valid Mysql Result Resource In ...
    This Is for My attack Script. (4)
    Hey. I am making a "Version 2.0" For my attack script, but I can't make it work. This is the
    error I am gettin: Warning: mysql_result(): supplied argument is not a valid MySQL result resource
    in And here is the code: CODE $dbQueryHealth = mysql_query("SELECT
    temphealth FROM characters WHERE user =".
    $_POST['atkuser']."");           $currentHealth =
    mysql_result($dbQueryHealth, 0);         $dbQueryExp =
    mysql_query("SELECT exp FROM characters WHERE user = ".$....
  6. Warning: Mysql_num_rows()
    What is the error :S (1)
    Hey! I've made a register script.. Some time ago it worked. And I ain't sure if I
    changed something since then.. The error I am getting is this: Warning: mysql_num_rows(): supplied
    argument is not a valid MySQL result resource in /home/feelay/public_html/regcheck.php on line 31
    Here is the code on theese lines: CODE $sqlCheckForDuplicate = "SELECT username FROM
    user WHERE username = '". $username ."'";                 if(
    mysql_num_rows( mysql_query( $sqlCheckForDuplicate ) ) == 0 )      ....
  7. Extracting Mysql Maths Using Php
    (2)
    Right, this is a really simple thing and it has me completely stumped. I'm working on this mini
    maths function and for some reason i cannot seem to do some simple math process using mysql. This is
    the code: (php btw), now assume that $date is actually a defined mysql date variable already
    successfully extracted. $sql = mysql_query("SELECT TO_DAYS('CURDATE()') -
    TO_DAYS('$date')"); while ($row = mysql_fetch_array($sql)){ $diff =
    $row ; } Can anyone spot what im doing wrong becuase im just thrown by it.....
  8. Too Many Connections?
    mysql_connect() (4)
    I uploaded my PHP game yesterday, and most of my friends tried it out. After a while, I tried to
    play as well but it said that mysql_connect() had too many connections already. Can anyone tell me
    how to increase the amount of connections or maybe the total amount of connections allowed?....
  9. Php/mysql And Manual Page Caching?
    (4)
    I am hopefully about to attempt this on the news page of my new site. Every bit counts as far as
    I'm concerned and not having "news" portion of my news page re-php and re-mysql everything where
    there is no chance seems like a waste. I'm looking for good articles, information or tips on
    the process (if I fail to find any good information as I'm looking through now). The way I see
    it right now, I have most of my page split up in header, content (some static html in here before
    dynamic contend and then a little more static html to close it off) and then a foo....
  10. Sql Injection Prevention (passing Numerical Data Across Pages).
    PHP/mySQL (9)
    Even if your building something as simple as a basic news page for your website, if your passing
    along url variable strings like (mysite/index.php?page=1), you may be vulnerable to SQL injection
    attacks. For cases like these (passing numerical data in url strings), I have a handy dandy little
    function to thwart these attempts silly: CODE // For checking if value is a number, if not
    return 1. function isNum($val) {   if (!is_numeric($val)) {
    $val = 1; }   return ($val); } I have this function, within my ....
  11. Php Mysql Errors
    Fetching arrays (2)
    I am deciding to make a Multiplayer Online RPG type game. I will be building it off of PHP and MySQL
    to ensure makimum compatibility with Astahost's services (and it makes it easier /wink.gif"
    style="vertical-align:middle" emoid=";)" border="0" alt="wink.gif" />). I have a database setup with
    1 table to hold user data and I have the login system setup properly as well as the registration
    form (obviously). All games of course have something similar to gold, units and points. Because
    this is a turn-based game, I have turns. Now for the problem: I am trying to echo ....
  12. How To Show Serial Nums In PHP Table For Contents Of MySQL DB
    Serial Numbering for output contents of mysql in php table (4)
    Hello there, I'm looking for some education. How would you show the serial numbering for
    outputted contents of mysql database. I used a table created in PHP to output content (i.e. an
    alumni database) and I created a column for S/N, so that at a glance anyone can tell how many
    members have registered. Thanks house. Neyoo....
  13. PHP & MySQL: Displaying Content From A Given ID
    (6)
    Okay so I got this sample link (not working): http://www.acosta.com/joo.asp?id=654 Now suppose
    I have a PHP file that would use MySql in order to get all values in the row where id 654 is found.
    Here's a sample DB: Table: demnyc ______________________________________ | id |
    Name | Age | Email | *----------------------------------------------------* | 1
    | Albert | 17 | no email |
    *----------------------------------------------------* | 2 | YaPow | 888 |
    no email | |__________....
  14. Re-order MySQL Table
    (11)
    Hello you all, I've got a question /smile.gif" style="vertical-align:middle" emoid=":)"
    border="0" alt="smile.gif" /> Let's say I have a database width the table "news". It contains
    about 10 items which is ordered by the field "id". Now from my admin page i do this: CODE
    <?PHP mysql_query("DELETE FROM news WHERE id=4"); ?> And a few days later
    i do: CODE <?PHP mysql_query("DELETE FROM news WHERE id=7"); ?> Now
    there are two gaps in the table => 1, 2, 3, 5, 6, 8, 9, 10 (no 4 and 7). It want to real....
  15. Need MySQL Alternative To The Syntax "or die()"
    (8)
    Hello again /smile.gif" style="vertical-align:middle" emoid=":)" border="0" alt="smile.gif" />
    I'm facing a problem with PHP and MySQL... I want, when a MySQL error occurs, to let the script
    continue. Here's the script: CODE $query = "SELECT * FROM menus ORDER BY id
    ASC"; $menus_result = mysql_query($query) or
    die("Error!"); while(
    $menu=mysql_fetch_array($menus_result) ) {    echo
    $menu['name']."<br />"; } Now if the table "menus" doesn&....
  16. Need Help With Php/mysql And Web Servers Such As Asta's.
    (4)
    Within my site I have built my own basic forum using PHP/Mysql, I always test locally now both using
    EasyPHP and WAMP5 which both give me no problems what so ever. But when I tryed to run the exact
    same code on Asta's hosting services (and possible another I used to use) when creating a new
    thread or adding a reply to an existing one it *sometimes* adds an additional thread/reply as a
    Guest (someone not signed in) with an empty message. This would lead me to believe that somehow the
    page is being refreshed and the variables sent to the database update php file are ....
  17. Important: Basics Of Using PHP And MySQL
    (10)
    I generally notice confusion with new users to PHP and or MySQL and first of all I believe that
    unlike HTML which is automatically associated with a IE browser in a Microsoft system. HTML is
    automatically rendered with whatever browser is the default browser, be it Internet Expolrer Firefox
    Netscape or any other browser that has been set. PHP is a different matter to view the output of a
    PHP file it must be run on a webserver, and if you do not have one set up on your local PC it simply
    will not work. (Note serverside langauge requies a server) HTML is client side and ....
  18. How Do You Create A Secure Loging?
    with PHP and mySQL (4)
    I've read a few articles, and looked up the code of certain files and some of them seem to work
    differently. I'm trying to create a login script, which would require PHP and mySQL to run,
    however, I'm not quite sure how to approach it since I'm only just learning PHP. I'd
    like to know, what is the most secure and effective login? I've heard you can add a salt to
    encrypted passwords, etc, and well as using sessions (sid). It's just like to know what methods
    are best for creating a secure login script. Thank yo ufor readin this. ....
  19. [php] Index.php?section=xx&pag=yy
    No MySQL or any other database (6)
    Hi everybody. This is my 3rd script, but this dont use MySQL It does this: divide the site in
    SECTIONS and PAGES. Benefits: -You have to create just the text of your pages, no create ech page
    with the entire layout again. -If its just the text that is included, you just have to have one page
    with the layout, witch is the INDEX.PHP. -If you chanche the layout in the index.php, you DONT HAVE
    TO change in the other pages. Here is the code: CODE <?php
    //-----------------------------------------// //ACAF Paginação                           //
    //by Alexandre Cis....
  20. [PHP + MySQL] Encrypting Data
    To protect the password of your DB, for example. (11)
    Hi! This is my 2nd code of PHP + MySQL. This code is VERY simple: it encript the data in the
    MySQL DB. Here we go! ------------------------------------------------------------------------
    CODE <?php $password = "abc"; $new_password = md5($password);
    echo $new_password; ?> The password "abc" was codfied using md5() This will be:
    900150983cd24fb0d6963f7d28e17f72 CODE <?php $normal_pass = "abc";
    $encripted_pass = "900150983cd24fb0d6963f7d28e17f72"; if(md5($norm....
  21. [PHP + MySQL] Separating The Results By Pages
    Simple code (0)
    Hi! I will post here a code for separating the results of MySQL in pages. You ask: Why separete?
    I answer: Imagin that you have 1523 results to display. I dont have to say anything. =P Here is it.
    ------------------------------------------------------------------- CODE <?php $conect
    = mysql_connect("host","user","password"); $select_db =
    mysql_select_db("database"); $query = "SELECT * FROM mytable";
    $results = "15"; //Number of results displayed per page. if (!$p....
  22. Need Some Help Using PHP & MySQL
    (4)
    I wonder if its possible or if anyone know how to : I'm making a website for my soccer team
    and every week there are new news, but in the index file i only show some part of the text and the
    rest of the news is in Stored in Database, of course that all news are inside mysql database, i only
    set a script to get from the Database the text and title and so. My doubt is if there is some how to
    attach a link to that news and when i run the link, this show me another page but with FULL news
    text ? i Read something like, i've to create a cicle CODE <....
  23. Printing Out A Table
    PHP and MySQL (6)
    I've been designing an online registration page for my univ. The adminstrative section is going
    to take care of the registration and they've asked me if I could incorporate a PRINT link on the
    page which displays the details of the students so that they can take a printout directly of just
    the table and not the extra links and decorations on the page without having to copy the whole thing
    into excel or something. Does anyone have any ideas of how to do this? To make myself more clear,
    here's a screenshot of the admin page: I want a printout of just the....
  24. Need For PHP/MySQL Creator
    (1)
    need for PHP/MYSQL creator I need a PHP/MYSQL application creator that have php function and
    create php codes automatically, for example:Macromedia Dreamweaver MX 2004 have this ability to
    create php applications already i downloaded PHP designer but it didn`t applications ....
  25. Need Help With A PHP - MySQL Registration Script
    Wont INSERT into the database (13)
    hey well can some one helpme make this code work it won't INSERT INTO THE DATABSE CODE
    <?php # register1.php # common include file to MySQL include("DB.PHP");
    $Username=$_POST['Username'];
    $Password=$_POST['Password'];
    $Name=$_POST['Name']; $Last=$_POST['Last'];
    $Sex=$_POST['Sex']; $Month=$_POST['Month'];
    $Day=$_POST['Day']; $Year=$_POST['Year&....
  26. Php/mysql Data Display
    (3)
    Okay .. got a bit of a question here, so I'll do some explaining. I was asked to do a site for
    an online roleplaying game, specifically, a "blackbook" site. I accepted and began my quest for
    knowledge of PHP. I've gotten quite "far" to the point that I can now take a user inputted
    search value and query the database with that value, and then display the values in a table. My
    MySQL table setup is as below: CODE |Name|Reports|Type1|Type2|Quote|Confirmed| When queried
    it displays the following: CODE Violator Name: ['Name'] # Repor....
  27. Php/mysql Function Problem
    (2)
    I am having a problem with some of the php/mysql functions. What I want to do is display the
    results that a MySQL shell would give a user when executing a query. Using the mysql_query()
    function I get a resource, but the mysql_fetch_row() and mysql_fetch_object() functions do not seem
    to be working. If requested, code can be provided, but what I'm looking for is more of an
    example on how to use these functions or other functions to display the output of a query. Thank
    you. ~Viz....
  28. Help With Multi Tier Mysql Application Over Net
    receiving data connection from client (6)
    hi.. i want to make a connection from my desktop client into mysql database at web server.
    currently i think it can be provided by PHP. 1. i'm thinking like this: CLIENT -> PHP + MYSQL
    CLIENT {sent file} -> PHP {receive file, open connection to MYSQL, insert data from file} how it
    will be done ??? 2. the security do you know how to secure it ? thanks......
  29. Displaying Data From Mysql?
    (2)
    how can i display data from mysql with php, just that on one page i want to display only the first
    10 things and the next page the next 20 ...etc.. how can i do that? ....
  30. MySQL & PHP coding
    (9)
    So it seems as though the php docs make it very clear that mysql and mysqli functions will all
    connect to the database as a latin1 client. Although i have my server set up with utf8 databases,
    tables and fields and the default client connection is utf8, php still connects as latin1. My
    xhtml forms and pages are all utf-8, so when i post utf8 data and insert it into the database the
    connection assumes that incoming data is latin1 and the data that gets placed in the database is
    invalid. phpMyAdmin seems to be able to view, add, edit, and retrieve utf8 strings in the d....

    1. Looking for good, mysql, class, easy, full, featured,

*RANDOM STUFF*





*SIMILAR VIDEOS*
Searching Video's for good, mysql, class, easy, full, featured,
Similar
Letting Users Add Mysql Data With Php
Mysql Question(inserting Number From A Textfield)
Making Something In Mysql Happen Only Once
Making A Link = Mysql_query
Warning: Mysql_result(): Supplied Argument Is Not A Valid Mysql Result Resource In ... - This Is for My attack Script.
Warning: Mysql_num_rows() - What is the error :S
Extracting Mysql Maths Using Php
Too Many Connections? - mysql_connect()
Php/mysql And Manual Page Caching?
Sql Injection Prevention (passing Numerical Data Across Pages). - PHP/mySQL
Php Mysql Errors - Fetching arrays
How To Show Serial Nums In PHP Table For Contents Of MySQL DB - Serial Numbering for output contents of mysql in php table
PHP & MySQL: Displaying Content From A Given ID
Re-order MySQL Table
Need MySQL Alternative To The Syntax "or die()"
Need Help With Php/mysql And Web Servers Such As Asta's.
Important: Basics Of Using PHP And MySQL
How Do You Create A Secure Loging? - with PHP and mySQL
[php] Index.php?section=xx&pag=yy - No MySQL or any other database
[PHP + MySQL] Encrypting Data - To protect the password of your DB, for example.
[PHP + MySQL] Separating The Results By Pages - Simple code
Need Some Help Using PHP & MySQL
Printing Out A Table - PHP and MySQL
Need For PHP/MySQL Creator
Need Help With A PHP - MySQL Registration Script - Wont INSERT into the database
Php/mysql Data Display
Php/mysql Function Problem
Help With Multi Tier Mysql Application Over Net - receiving data connection from client
Displaying Data From Mysql?
MySQL & PHP coding
advertisement




Anyone Know Of A Really Good Mysql Class? - Looking for something easy but full featured.



 

 

 

 

ADD REPLY / Got an Opinion! a humble request :-) RAPID SEARCH! Free Hosting [X]
Express your Opinions, Thoughts or Contribute your information that might help someone here.
Ask your Doubts & Queries to get answers.. "Together, We enlight each other!"
Register FREE for AD-FREE forum, Create your own topics, Ask Questions, track topics, setup subscriptions & notifications and Get a Free Website w/ Email and FTP.
500MB Space *No Ads*, CPanel, FTP, PHP, MySQL, EMails - 100% FREE