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.

some

pls help me to extend Bluetooth in ip network
Thursday, 02 February 2012 07:55
i want some sample code.....pls help me

Read more: http://feeds.dzone.com/~r/dzone/snippets/~3/2VKlqqf_Iy4/14619

 
led street lights
Tuesday, 31 January 2012 11:02
I always like to know some important things. So i adhere to this site for collecting some important and useful article for post and sharing with some of my friends. I like this article. its so nice.


led street lights

Read more: http://feeds.dzone.com/~r/dzone/snippets/~3/nCfiCBHBMU0/14595

 
The Most (and Least) Amazing Things We Saw at CES Day One [Video]
Tuesday, 10 January 2012 23:14
Day one is winding down at CES, and we're already starting to see some trends emerge. Like, everyone seems to have the flu. And, wow, those are some big-ass TVs. But we've been picking up on a few themes that seem to be emerging after this first official day of CES. Here are the highlights, lowlights, and ultralights that made the biggest impression: More »


Read more: http://feeds.gawker.com/~r/gizmodo/full/~3/F3O7tfPXC_I/the-most-and-least-amazing-things-we-saw-at-ces-today

 
New Ultrawidescreen Vizio TVs Have True Cinema Aspect Ratio [TVs]
Tuesday, 10 January 2012 08:53
Vizio is tearing up CES with its new PCs and 10-inch tablet. But it's also announced some new TVs which look pretty sweet, too. More »


Read more: http://feeds.gawker.com/~r/gizmodo/full/~3/cenH0Pfy9yk/ultrawidescreen-3d-and-google-tv-from-vizio-theyre-on-a-roll

 
How To Make Files Downloadable with PHP
Tuesday, 10 January 2012 05:47
In some situations when you’re creating a web page with links to a file like pdf – xml – jpeg , or other external program file , you may want user’s browser prompt to download the file instead of opening it in the browser window or in an external program . There are a few different methods you can do this , my favorite is PHP-based . Start by creating a new file on your server or on your development computer called download.php and paste the below code into the file .
Complete article : http://tournasdimitrios1.wordpress.com/2012/01/10/how-to-make-files-downloadable-with-php/


// download.php
if (isset($_GET['file'])) {
//$file = $_GET['file'];
$file = filter_input(INPUT_GET, 'file', FILTER_SANITIZE_ENCODED);
if (file_exists($file) && is_readable($file) && preg_match('/\.pdf$/',$file)) {
header('Content-Description: File Transfer');
header('Content-type: application/pdf');
header("Content-Type: application/force-download");// some browsers need this
header("Content-Disposition: attachment; filename=\"$file\"");
header('Expires: 0');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Pragma: public');
header('Content-Length: ' . filesize($file2));
ob_clean();
flush();
readfile($file);
exit;
}else {
header("HTTP/1.0 404 Not Found");
echo "

Error 404: File Not Found:
$file

";
header('Refresh: 5; url=http://localhost/zy3.php');
print 'You will be redirected in 5 seconds';
exit ;
}
} else {
header('Refresh: 5; url=http://localhost/zy3.php');
print '

You you shouldn\'t be here ......

redirection in 5 seconds



';

exit;
}

//index.html
Click here to download PDF


Read more: http://feeds.dzone.com/~r/dzone/snippets/~3/zym73g_pymI/14425

 
Start
Prev
1


Page 1 of 8
Taxonomy by Zaragoza Online