Aldi_Khoirul

Blogger templates

Pemrograman Web Dinamis

Membuat Multi Level User dan CRUD mahasiswa Pada program ini saya membuat 2 user yaitu 'admin' dan 'user'. dimana apabila kita masuk dengan level admin maka kita bisa menampilkan data mahasiswa, menambah data mahasiswa, edit serta menghapus data mahasiswa. ketika login dengan level...

Pemrograman Web Dinamis

Membuat Form Pendaftaran dengan Validasi Untuk membuat form pendaftaran dengan validasi kita bisa mulai dengan membuat file form.html Source Code form.html <html> <head> <title>Form Pendaftaran</title> <script language="JavaScript" src="validjs.js"...

Pemrograman Web Dinamis

Menampilkan data keluarga sebanyak n inputan Source Code data.php <?php session_start(); $_SESSION['ALDI']=0; header("location;index.php") ?> index.php <html> <head> <title>form index</title> </head> <tr><td><b><font...

Biodata

Program Biodata Menggunakan PHP Cara 1 <?php echo "Biodata Teman<br><br>"; $nama1 = "Aldi"; $nama2 = "Ubai"; $nama3 = "Zaky"; $nama4 = "Andi"; $nama5 = "Bram"; $alamat1 = "Sumatera"; $alamat2 = "Lampung"; $alamat3 = "Magelang"; $alamat4 = "Kalimantan"; $alamat5...

Matrik

Program Matrik dengan Dev C++ #include <iostream> /* run this program using the console pauser or add your own getch, system("pause") or input loop */ using namespace std; int main(int argc, char** argv) { int i,j,hasil[2][2]; int A[2][2]={6,5,4,3},B[2][2]={6,5,4,3}; cout<<"Isi...

Pangkat

Program Pangkat dengan C++ #include <iostream> /* run this program using the console pauser or add your own getch, system("pause") or input loop */ using namespace std; int main(int argc, char** argv) { int i, hasil,a,n; hasil=1; cout<<"Program Menghitung Pangkat"<<endl<<endl; ...

Deret Fibonacci

Program Deret Fibonacci dengan Dev C++ #include <iostream> /* run this program using the console pauser or add your own getch, system("pause") or input loop */ using namespace std; int main(int argc, char** argv) { int a, b, x, y, i; cout<<"Program Deret Fibonacci"<<endl<<endl;  ...