Minggu, 10 Januari 2010

PHP : TAMBAH KOLOM

$koneksi=mysql_connect("localhost","","") or die ("Koneksi gagal");
$tabel = "mahasiswa";
$kolom_baru = "kelulusan varchar(15) not null";

$sql="ALTER TABLE $tabel ADD $kolom_baru";
$qry=mysql_db_query("contoh",$sql,$koneksi);
if ($qry) {
print "Kolom baru telah berhasil di tambahkan";
} else {
print "Kolom baru gagal di tambahkan";
}
mysql_close();
?>

Tidak ada komentar: