Navigation :

Home
Source code
Tutorials
RSS feeds
Articles
Wordpress plugins
Blog
Books
Software
Downloads
Hosting
manuals
Script directory
Training
Our Links




Site Sponsors :

Bookmark :

Links :

gambling sites
software directory
wwwstores

Downloads :

Misc :

Webmaster Resources
Only PHP
ScriptSearch.com
Scripts.com - Get the best scripts NOW!
AndreaPHP Programming

Valid XHTML 1.0 Transitional


Valid CSS!


DIsplay the content type with PHP and cURL

DIsplay the content type of a file with PHP and cURL

<?php
//googles small gif logo
$curl = curl_init('http://www.google.com/images/logo_sm.gif');
curl_setopt($curl, CURLOPT_RETURNTRANSFER, TRUE);
curl_exec($curl);
//get the content type
print("Content type: " . curl_getinfo($curl, CURLINFO_CONTENT_TYPE) .'<br>');
?>