Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

MySQLi Extended Class

Joined
Jun 2, 2012
Messages
765
Reaction score
294
Currently building a MySQLi Extended Class in PHP.

GitHub


Features
- Prepared Statements
-- Insert - Complete
-- Select - Not started, trying to work how to do it.
-- Update - Complete
-- Delete - Complete

Feedback
- This would be appreciated.
 
Last edited:
Joined
Apr 28, 2005
Messages
6,953
Reaction score
2,420
Just a question, why aren't you putting the connect in __construct and the disconnect in __destruct? Makes more sense to have this handled automatically. I mean, the connection is closed regardless of calling mysql_close, just an observation.
 
Joined
Jun 2, 2012
Messages
765
Reaction score
294
Yea i know, it's only like that because when i was building query builder, i kept getting connection errors, when i wasn't even intending of a connection.

I will be changing it sometime later today.
 
Back
Top