Recently I had a little experience makes me tired. Why not, more than 2 days I have not got javascript error in my web program
In ASP.Net, I use a script, which calculates the number of characters from a text box. After the run, the program can work well, both on IE and Mozilla.
With the same [...]
Ada perbedaan koneksi di web server lokal dan di web hosting:
Contoh koneksi di local :
<?
$db=mysql_connect(“localhost”,”username”,”password”);
mysql_select_db(“database”, $db);
?>
Contoh :
<?
$db=mysql_connect(“localhost”,”root”,””);
mysql_select_db(“alamat”, $db);
?>
Ketika mengakses di web hosting, maka koneksi menjadi :
<?
$db=mysql_connect(“localhost”,”username”,”password”);
mysql_select_db(“username_namadb”, $db);
?>
Sebagai contoh, apabila dari hosting anda mendapatkan user : begu, dan password anda : tamburkais, dan anda membuat database : janggulmeong, maka koneksi yang bear adalah :
<?
$db=mysql_connect(“localhost”,”begu”,”tamburkais”);
mysql_select_db(“begu_janggulmeong”, $db);
?>
Apabila anda [...]