download music mp3 slow rock clasik

roxete
bon jovi
nirvana
mr big

php

perbedaan query antara posgree dan mysql

1. pada sat select pg_ kalo di mysql mysql_
2. kalo mysql_num_row di posgree pg_num_row
3.dan masih bayak lagggii

,

Java Script

Nah Loo sekarang saya akan buat tutor nich


:)
yah daripada lupa mending aku taro di blog ku ini aja


sekarang saya akan menjumlah kan pada saat ada tabel transaksi header dan detail di mana detail harus relasi dengan header

disable textbox

membuat form
dengan text box di sable

<form action="demo_form.asp">
  First name: <input type="text" name="fname" disabled value="teeee"><br>
  Last name: <input type="text" name="lname"  ><br>
  <input type="submit" value="Submit">
</form>
, , ,
membuat login multi user sederhana
dengan menggunaka session
form inputan 
<form class="boxCont" method="POST" action="user/cek_login.php">
        <div>
            <label for="userName">Username</label>
            <input id="username" type="text" name="username" placeholder="Please enter your username here" />
        </div>
      
        <div>
            <label for="password">Password</label>
            <input id="password" type="password" name="password" placeholder="And your password here" />
        </div>
      
        <div>
            <!--<input type="submit" id="signIn" name="signIn" value="Sign In" class="btn left" />-->
            <input type="submit" id="signIn" name="signIn" value="Sign In" class="btn right" />
        </div>
    </form>





software download

Wining eleven
http://www.4shared.com/zip/WSv22FLXce/winning_eleven.html
 Dream weaver Portable
http://www.4shared.com/file/YMjW-60Kba/Adobe_Dreamweaver_CS3_Portable.html
office 2007
http://www.4shared.com/zip/5JI_pNwPba/MS_OFFICE_2007_STD.html
cd burn 
http://www.4shared.com/folder/YAcf-Qty/CDBurnerXP-441.html

cara bukan situs yang di blokir

di sini saya akan terangkan bagaimana cara membuka situs yang di blok
1. menggunakan ultrasuft
    untuk aplikasinya download aja di http://ultrasurf.us/ itu untuk buka proxy
2. menggunakanweb proxy yaitu mengakses halaman lain dengan memnggunakan halamana website yang beda
contoh : https://www.filterbypass.me/ dan masih banyak lagi
3. setting local pada network adaptornya
    beda beda klo di kantor,di rumah, pake spedy juga beda untuk penggunaannya


cara install database di centos

[root@www ~]# 
yum -y install mysql-server
[root@www ~]# 
/etc/rc.d/init.d/mysqld start 

Initializing MySQL database:  Installing MySQL system tables...
OK
Filling help tables...
OK

To start mysqld at boot time you have to copy
support-files/mysql.server to the right place for your system

PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER !
To do so, start the server, then issue the following commands:

/usr/bin/mysqladmin -u root password 'new-password'
/usr/bin/mysqladmin -u root -h www.server.world password 'new-password'

Alternatively you can run:
/usr/bin/mysql_secure_installation

which will also give you the option of removing the test
databases and anonymous user created by default.  This is
strongly recommended for production servers.

See the manual for more instructions.

You can start the MySQL daemon with:
cd /usr ; /usr/bin/mysqld_safe &

You can test the MySQL daemon with mysql-test-run.pl
cd /usr/mysql-test ; perl mysql-test-run.pl

Please report any problems with the /usr/bin/mysqlbug script!

Starting mysqld:     [  OK  ]

[root@www ~]# 
chkconfig mysqld on 

[root@www ~]# 
mysql -u root 
# connect to MySQL

Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 2
Server version: 5.1.52 Source distribution

Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved.
This software comes with ABSOLUTELY NO WARRANTY. This is free software,
and you are welcome to modify and redistribute it under the GPL v2 license

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

# show user info

mysql> 
select user,host,password from mysql.user; 

# set root password

mysql> 
set password for root@localhost=password('password'); 

Query OK, 0 rows affected (0.00 sec)
# set root password

mysql> 
set password for root@'127.0.0.1'=password('password'); 

Query OK, 0 rows affected (0.00 sec)
# set root password

mysql> 
set password for root@'www.server.world'=password('password'); 

Query OK, 0 rows affected (0.00 sec)
# delete anonymous user

mysql> 
delete from mysql.user where user=''; 

Query OK, 2 rows affected (0.00 sec)
mysql> 
select user,host,password from mysql.user;

mysql> 
exit 
# quit

Bye
[root@www ~]# 
mysql -u root -p 
# connect with root

Enter password:
# MySQL root password

Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 4
Server version: 5.1.52 Source distribution

Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved.
This software comes with ABSOLUTELY NO WARRANTY. This is free software,
and you are welcome to modify and redistribute it under the GPL v2 license
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql> 
exit

Bye

membuat ftp server dengan centos

untuk membuat ftp server agar dapat megirim dan menerima data
[root@www ~]# 
yum -y install vsftpd
[root@www ~]# 
vi /etc/vsftpd/vsftpd.conf
# line 12: no anonymous

anonymous_enable=
NO
# line 80,81: uncomment ( allow ascii mode )

ascii_upload_enable=YES
ascii_download_enable=YES
# line 95, 96: uncomment ( enable chroot )

chroot_local_user=YES
chroot_list_enable=YES
# line 98: uncomment ( specify chroot list )

chroot_list_file=/etc/vsftpd/chroot_list
# line 104: uncomment

ls_recurse_enable=YES
# add at the last line 

# specify root directory ( if don't specify, users' home directory become FTP home directory)

local_root=public_html
# use localtime

use_localtime=YES
[root@www ~]# 
vi /etc/vsftpd/chroot_list
# add users you allow to move over their home directory

cent
[root@www ~]# 
/etc/rc.d/init.d/vsftpd start 

Starting vsftpd for vsftpd: 
[  OK  ]

[root@www ~]# 
chkconfig vsftpd on

CentOS

Membuat FTP server  pada CentOS
1. install dahulu FTP servernya dengan cara : yum install vftpd
2. configurasinya pada centos 6.2 ada pada /var/etc
3. dan jangan lupa untuk install FTP clientnya


, ,

PHP

apa itu PHP
PHP itu adalah singkatan  dari "PHP: Hypertext Preprocessor", yang merupakan
sebuah bahasa scripting yang terpasang pada HTML. Sebagian besar sintaks mirip
dengan bahasa C, Java dan Perl, ditambah beberapa fungsi PHP yang spesifik.
Tujuan utama penggunaan bahasa ini adalah untuk memungkinkan perancang we.