Kamis, 16 Oktober 2014

IFRAME dan EMBED

,
IFRAME :
<html>
<style type="text/css">
body{
margin: 0 auto;
height: 100%;
width: 100%;
}
</style>
<body marginheight="0px" marginwidth="0px">
<iframe frameborder="0" height="100%" src="domain web yang mau di tampilkan" width="100%"></iframe>
</body>
</html>

EMBED :
<html>
<body cz-shortcut-listen="true" marginheight="0" marginwidth="0" style="background-color: #262626;">
<embed height="100%" name="plugin" src=" files yg mau ditampilkan " type="application/pdf" width="100%"></embed>
</body>
</html>
Read more →

Menonaktifkan pesan error di codeigniter

,
Buka file "index.php" di parent directory project codeigniter.
rubah "error_reporting(E_ALL);"
menjadi "error_reporting(0);"
Read more →