<form id=”form1″ name=”form1″ method=”post” action=”excel.php”> <p> QUERY : <br /> <textarea name=”sql” cols=”50″ rows=”6″ id=”sql”></textarea> </p> <p> <input type=”submit” name=”Submit” value=”Submit” /> </p> </form> <p style=”text-align: justify;”><strong>Nama File : excel.php</strong> <?php $hostname = “localhost”; $username = “root”; $database = “a”; $password = “”; $conn = mysql_connect($hostname,$username,$password); mysql_select_db($database);
Category: Akademik
Penggunaan perulangan
Berikut ada sedikit contoh penggunaan perulangan untuk mencetak simbol bintang dan membentuk suatu segitiga. Buatlah project baru dg tipe aplikasi: console application dan ketik listing di atas kemudian jalankan amati yang ditampilkan di console (layar komputer) lakukan beberapa percobaan dengan mengganti nilai yg diberikan di variabel abc. Selamat mentjoba.
“Abah kendaraan B itu kota apa Bah”, demikian tanya seorang Atha pada Abahnya
Berawal dari belajar huru-huruf disekolahan sudah diajari membaca sejak dini, dan di usia TK B ini Atha begitu gencarnya belajar membaca, setiap ada tulisan dieja dan dibacanya dengan ejaan yang kadang lucu. Liburan ini tambah wawasannya dengan bacaan di plat nomor kendaraan, sempat dia bertanya: “Abah kendaraan B itu kota apa Bah?”, demikian tanya seorang...
Protected: Soal Responsi Praktikum UML
There is no excerpt because this is a protected post.
Protected: Soal Responsi Praktikum PV Kelas 3
There is no excerpt because this is a protected post.
Protected: Soal Responsi Praktikum PV Kelas 2
There is no excerpt because this is a protected post.
Protected: Soal Responsi Praktikum PV kelas 1
There is no excerpt because this is a protected post.
Penggunaan friend class
#include <cstdlib> #include <iostream> using namespace std; class CSquare; class CRectangle{ int width, height; public: int area(){return (width * height);} void convert (CSquare a); }; class CSquare{ private: int side; public: void set_side(int a){side=a;} friend class CRectangle; }; int main() { CSquare sqr; CRectangle rect; sqr.set_side(4); rect.convert(sqr); cout <<endl<<rect.area()<<endl; system(“PAUSE”); return EXIT_SUCCESS; } void CRectangle::convert(CSquare...
Protected: TUGAS CPP-oveloading operator Pengurangan, perkalian, pembagian
There is no excerpt because this is a protected post.
Protected: Tugas Akhir Individu Pemrograman Visual
There is no excerpt because this is a protected post.