Free Icon Packs from the Dribbble - Part 2

Posted on Jun 24, 2013
Part 2: This post rounds up 10 high quality icon sets that can be used in your projects for free.

1. Free Tiny Icons by Andree


2. Random Icons by Ryan Quintal

Free Icon Packs from the Dribbble - Part 1

Posted on Jun 24, 2013
Dribbble is not only a great website to find insights into what fellow designers are working on, it's also home to an array of freebies available for download from generous Dribbble users.

Part 1: This post rounds up 10 high quality icon sets that can be used in your own projects for free.


1. Credit Card Icon Pack by Louis Harboe


2. iOS Icon Pack by Michael Shanks

MySQL dumps with PHP - Good Tips

Posted on Jun 24, 2013
To make a MySQL Dump with PHP, you'll simply have to execute the following Command in PHP script:
(The code below as one line in your PHP-script).
passthru("/usr/bin/mysqldump --opt --host=$dbhost --user=$dbuser
--password=$dbpwd $dbname > $dump_file_name");

MYSQL-HOST = MySQL server adress (mysql15**.examplehost.net).
USERNAME = the username for the database.
PASSWORD = the password for the database.
DATABASENAME = the name on the database.

Another bit of code that does the same job, better coded maybe.
<?php
$dbhost   = "mysql15**.examplehost.net";
$dbname   = "DATABASENAME";
$dbuser   = "USERNAME";
$dbpwd    = "PASSWORD";
$dumpfile = $dbname . "_" . date("Y-m-d_H-i-s") . ".sql";

© Twiwoo 2023 Cookie Policy