3
votes
1answer
59 views

advantage of using __call method

I have wrote simple class that allowing database selection and inserts.Could you please tell me does this a right way to use __call method with any useful advantage of it ? ...
3
votes
1answer
100 views

Review/rate my new graph class

I have written a PHP class called "graph". It is a class that performs RESTful-like commands to a MySQL database. I have posted the GitHub repo. Here is the code as well: config.php ...
3
votes
2answers
415 views

Accessing MySQL to make queries and scalars

I've developed my own class in ASP.NET project to access MySQL and make queries and scalars, and read the results from it. I want you to review my class and tell me where I've made a mistake. Here ...
0
votes
2answers
289 views

PHP PDO Custom class ple

i created a database class from a good tutorial and wanted to put it up here so it would get in some search results. it took me about 2 days to find it. also i added a few custom functions to it.. ...
1
vote
2answers
232 views

What can I do to make this class better?

I'm 100% sure improvements can be made. Any help is greatly appreciated. I should add that I am new to OOP and am not sure if I'm using this the right way. ...
8
votes
2answers
465 views

Object Paradigm for PHP, Practice in Design

I've created and I manage a point of sale web application built in PHP which has thus far followed no clear guidelines or methodology for development; it's operation is completely procedural. In turn, ...