i notice a thing about header function in php.....sometimes we used it as
1.header("Content-type: $contenttype"); //i saw this in a dynamic page
2.header("Content-type: $image/png"); //saw this in a captcha create page
3.header("location:bird.php"); // this one i understand
4.header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Cache-Control: no-cache");
header("Pragma: no-cache"); //saw these in w3schools, says some cache-control
but i only get 3rd one(bird.php), didnt know what it actually does...so any help..??