• Archives

    » db_class
Feb
20

Selectall() with db_class

I have added an update to my db_class framework to allow you to select any table from your database. You may pass the new method the table name then what columns you would like to return or you may just say all for all columns. Once you call the method you may display the results [...]

Jan
14

Confirm your passwords

I have added a quick function to the auth class that will allow you to check your passwords. You will need to feed the function the password field and the confirm password field. It will check if they match then return TRUE or FALSE if they don’t.
Download the db_class
[php]$auth = new auth();
$auth->validates_confirmation_of_password($password,$password2);[/php]

Jan
2

Fixes to the Auth Class

I left out a line in the new class (auth), I did not set the variables inside the class. I have now fixed this problem sorry for any headaches this may have caused!
On another note I added a new function to the class (auth), this function will allow you to validate the uniqueness of an [...]

Dec
30

Use the db_class to authenticate

User authentication made easier and less of a hassle to write. Use my db_class to authenticate a user from your database, with all the options you would have if you wrote it yourself! I have also added an “Auto Start” this will start the classes you want right off the bat, saving you one line [...]

Dec
29

Adding on to the db_class

I am adding a user authentication class to this, as that is something I use on a regular basis. I think other developers will get a lot of use out of this as well. I all put the class up for download sometime this weekend. I will also post more details on how to use [...]

Nov
11

Save time with Queries

In developing the June Project and JuneLite I came up with something that was saving me a lot of time. This php class is calling the queries for me all I need to do is write the guts of the query, and if updating provide the record id. This class can connect to your database [...]