This gist shows how to create a GIF screencast using only free OS X tools: QuickTime, ffmpeg, and gifsicle.
To capture the video (filesize: 19MB), using the free "QuickTime Player" application:
If you haven't already set your NPM author info, now you should:
npm set init.author.name "Your Name"
npm set init.author.email "[email protected]"
npm set init.author.url "http://yourblog.com"
npm adduser
<?php | |
require 'database.php'; | |
if ( !isset($_GET['id']) ) { | |
echo 'Please specify the id of the user to be deleted!'; | |
die(); | |
} | |
$query = 'DELETE FROM `user` WHERE id = :id'; |