Error
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.

simple

Artist Captures the Beauty of Disintegration via Pellet Gun [Image Cache]
Monday, 23 January 2012 23:40
It's amazing what some high-speed photography and a few well-placed BB's can accomplish. Artist Ian Sailer created this stunning series, dubbed, Color Explosion Photos. Who know a simple pellet gun could cause all this Technicolor destruction? [Flickr via Faith is Torment via Buzzfeed]
More »


Read more: http://feeds.gawker.com/~r/gizmodo/full/~3/EHhSjX9A8kA/

 
This Week's Top Web Comedy Video: Rooftop Slip 'n Slide [Video]
Friday, 06 January 2012 22:00
A few beers, a summer day, and a Slip 'n Slide? Sounds like heaven. But then you add just a simple little roof to the mix, and suddenly everything goes wrong. More »


Read more: http://feeds.gawker.com/~r/gizmodo/full/~3/woV7bo7NXdw/this-weeks-top-web-comedy-video-rooftop-slip-n-slide

 
A simple PHP Mysql Class
Saturday, 05 November 2011 16:22
Simple to use :
http://tournasdimitrios1.wordpress.com/2011/11/05/a-simple-php-mysql-class/#more-6911




//Simply include this file on your page
require_once("DbConnect.class.php");

//Set up all yor paramaters for connection
$db = new DbConnect("localhost","user","password","database",$error_reporting=false,$persistent=false);

//Open the connection to your database
$db->open() or die($db->error());

//Query the database now the connection has been made
$db->query("SELECT * FROM....") or die($db->error());

//You have several options on ways of fetching the data
//as an example I shall use
while($row=$db->fetcharray()) {

//do some stuff

}

//close your connection
$db->close();


*/
Class DbConnect {

var $host = '';
var $user = '';
var $password = '';
var $database = '';
var $persistent = false;

var $conn = NULL;

var $result= false;
var $error_reporting = false;

/*constructor function this will run when we call the class */

function DbConnect ($host, $user, $password, $database, $error_reporting=true, $persistent=false) {

$this->host = $host;
$this->user = $user;
$this->password = $password;
$this->database = $database;
$this->persistent = $persistent;
$this->error_reporting = $error_reporting;
}

function open() {

if ($this->persistent) {

$func = 'mysql_pconnect';

} else {

$func = 'mysql_connect';

}

/* Connect to the MySQl Server */

$this->conn = $func($this->host, $this->user, $this->password);

if (!$this->conn) {

return false;

}

/* Select the requested DB */

if (@!mysql_select_db($this->database, $this->conn)) {

return false;
}
return true;
}

/*close the connection */

function close() {

return (@mysql_close($this->conn));
}

/* report error if error_reporting set to true */

function error() {

if ($this->error_reporting) {

return (mysql_error()) ;
}

}

function query($sql) {

$this->result = @mysql_query($sql, $this->conn);

return($this->result != false);

}
function affectedrows() {

return(@mysql_affected_rows($this->conn));
}

function numrows() {

return(@mysql_num_rows($this->result));

}
function fetchobject() {

return(@mysql_fetch_object($this->result, MYSQL_ASSOC));

}
function fetcharray() {

return(mysql_fetch_array($this->result));

}

function fetchassoc() {

return(@mysql_fetch_assoc($this->result));
}

function freeresult() {

return(@mysql_free_result($this->result));

}

}
?>

Read more: http://feeds.dzone.com/~r/dzone/snippets/~3/ID7vlkb3CzE/13833

 
Arquette: Just Like A Woman
Monday, 05 September 2011 09:00

RAMBO SAYS: There's something special in ARQUETTE's eyes - the type that can lead you to a bedroom with a simple bat of her eyelashes.

Read more: http://suicidegirls.com/girls/Arquette/photos/Just+Like+A+Woman/

 
The Pico Dolly Lets You Take Pics from Its Mini Skateboard [Video]
Saturday, 03 September 2011 13:00
Looks like everybody is getting in on these smooth-panning camera systems. A new cousin to the CineSkates, here's the CheesyCam Pico Dolly, a simple setup for littler cameras like the new Sony NEX-7. More »


Read more: http://feeds.gawker.com/~r/gizmodo/full/~3/fHKwqXv8CwQ/the-pico-dolly-lets-you-take-pics-from-its-mini-skateboard

 
Start
Prev
1


Page 1 of 4
Taxonomy by Zaragoza Online