Widgets for Websites

Create a widget to show information stored in a MySQL database on another serverRecently we were asked to create away to show information stored in a MySQL database on another website server, it would have to automatically update every time the database was updated and need no maintenance at all after the installation and CSS was adapted to the look of the website.

This was a new challenge for us as, and we love challenges. More »

Save MySQL from Oracle

Urgently need help save MySQL from Oracle’s clutches. Without your immediate help Oracle might get to own MySQL any day now. More »

Use PHP5 by default by editing your .htaccess file

To make PHP5 as the default version of php for your account please insert the following line of code in the .htaccess file under the public_html directory of your account.
More »

Warning: mail(): SMTP server response: 451

If you ever receive the error 451:
Warning: mail(): SMTP server response: 451 See http://pobox.com/~djb/docs/smtplf.html. in…
This is a server error and the command has been aborted due to a server error. It’s not your fault. Your form or shopping cart is sending mail with “bare LFs” which Qmail doesn’t support. More »

How to display the results from your database in order

Ascending
"SELECT * from name_of_table order BY date ASC"

Descending
"SELECT * from name_of_table order BY date DESC"