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.

use

Need help inserting javascript slideshow into div container
Saturday, 14 January 2012 14:18
Hello experts,

I found this cool slideshow script and want to use it as a horizontal bar below my header. In order to use my other div containers for menus, etc. I need this slideshow to appear in a div container. What must I do to reference it there or point it, etc.?

I am new to this so any help is very much appreciated.
Dixon

Read more: http://feeds.dzone.com/~r/dzone/snippets/~3/7p9oACD1IzY/14435

 
Mitsubishi Thinks Curved Rear Projection Dashboards Are Just a Decade Away [Video]
Saturday, 10 December 2011 18:00
Since LCD displays can't be easily curved, their use in vehicle dashboards has been very limited. So Mitsubishi is hoping the wraparound rear projection dashboard display used in their EMIRAI concept could see widespread use in just ten years. More »


Read more: http://feeds.gawker.com/~r/gizmodo/full/~3/AO-OSvAy5Qg/mitsubishi-thinks-curved-rear-projection-dashboards-are-just-a-decade-away

 
Chad: Early Evenings
Thursday, 17 November 2011 09:00

RAMBO SAYS: Have an early evening with ginger beauty CHAD. She looks like she could use a cuddle buddy...

Read more: http://suicidegirls.com/girls/Chad/photos/Early+Evenings/

 
Crack a Beer With a Switchblade Bottle Opener and Feel Like the Badass You Absolutely Are Not [Desired]
Sunday, 06 November 2011 17:00
Chances are you don't have much use for a switchblade in your life. But you probably use a bottle opener all the time. GamaGo's Switch Pop combines the tough guy imagery of the former with the utility of the latter. More »


Read more: http://feeds.gawker.com/~r/gizmodo/full/~3/GXRsuuyJ_go/crack-open-a-beer-with-a-switchblade-bottle-opener-and-youll-feel-like-the-badass-you-absolutely-are-not

 
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

 
Start
Prev
1


Page 1 of 6
Taxonomy by Zaragoza Online