Skip to content

Instantly share code, notes, and snippets.

@abdullahalim
abdullahalim / koneksi
Last active August 29, 2015 13:58
Koneksi ke Database MySQL menggunakan PHP
<?php
// deklarasi variable yang akan digunakan
$host = "localhost";
$user = "root";
$pass = "";
$database = "db_belajar";
/*
@abdullahalim
abdullahalim / Icon-Title
Last active December 2, 2022 06:29
Panduan untuk mengganti title icon di HTML
<html>
<head><title>Icon-Title</title>
<link href='http://wallpaperback.blogspot.com/favicon.ico' rel='shortcut icon'>
</head>
<body>
<h1>Cara Mengganti Icon di sebelah Title</h1>
<h2>Lihat di Baris 3</h2>
</body>
</html>