List data in a table that can be edited with AJAX

PHP, PHP Scripts, Software Development, Tips, Tutorials, Web Design & Programming
This class could be utilized to record information in a Html table that could be altered utilizing Ajax. It backs record page scrolling, segment sorting, and set up altering of information cells utilizing structure fields to adjust the qualities and Ajax demands to safeguard the updated qualities to the server. Download Script
Read More

Show month datebooks browseable utilizing Ajax

PHP, PHP Scripts, Techniques, Tutorials, Web Design & Programming
This class might be utilized to presentation month timetables browseable utilizing Ajax. It can create Html and Javascript to presentation a month timetable with connections to peruse the months utilizing Ajax to stay away from page reloading. The class can make given days be shown as connections to occasion pages. The skimming may be limited to given dates. The months and week day names are customizable. The presentation items may be tweaked utilizing CSS. Download Script
Read More

Offline Access to Google and other OAuth based API – PHP OAuth API – Part 2

PHP, Techniques, Tips, Tutorials, Web Design & Programming
Retrieving Access Tokens from a MySQL database The database_oauth_client_class is just a generic SQL database storage class. It really does not execute SQL queries because that depends on the type of database you want to store your tokens. A more specialized sub-class is necessary to execute the SQL queries to a specific type of database. This package also comes with another sub-class named mysqli_oauth_client_class that is specialized in executing the SQL queries to a MySQL database using the mysqli extension. If you use a different type of database, you can use this sub-class as model to execute SQL queries using the appropriate PHP extension. Lets see how you can make this work in practice to make the tokens be stored and retrieved in a MySQL database. The first thing you…
Read More

Offline Access to Google and other OAuth based API – PHP OAuth API – Part 1

PHP, Techniques, Tips, Tutorials, Web Design & Programming
Some applications require access to APIs on behalf of the user even when the user is not present, i.e. offline access. OAuth is a protocol that allows applications to obtain a token to access an API when the user is not present but when the tokens expire they need to be renewed. Some APIs like Google and Box.net support automatic renewal of expired tokens. Using OAuth Tokens to Access APIs Without the User Presence OAuth is a protocol that was thought to grant external applications the permission to call Web site API functions on behalf of an user. It can be used for instance to get details of the user account like his name or even email address, manipulate personal user information like for instance uploading user pictures, execute tasks…
Read More