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
Link: http://dribbble.com/shots/296470-Free-Tiny-Icons
2. Random Icons by Ryan Quintal
Link: http://dribbble.com/shots/307644-Random-Icons-Free-Download
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
Link: http://dribbble.com/shots/66316-Credit-Card-Icon-pack
2. iOS Icon Pack by Michael Shanks
Link: http://dribbble.com/shots/524312-iOS-Icon-Pack-v3
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";