Thursday, May 30, 2013

KISI-KISI UKA 2013

Kisi-Kisi Soal UKA 2013 menjadi penting karena passing grade UKA adalah 7,50.  Untuk memperoleh nilai setinggi itu diperlukan Kisi Kisi agar yang kita pelajari mendekati dengan soal yang akan disajikan
Dapatkan kisi-kisi UKA 2013, klik di sini
UKG
UKA 2013

DOWNLOAD SIMULASI UKA 2013

Simulasi Soal Uji Kompetensi Awal (UKA) 2013 menjadi penting karena UKA tahun ini menggunakan komputer untuk penyajian soalnya, tidak lagi menggunakan Lembar Jawaban Komputer (LJK) seperti tahun lalu.
Download Simulasi UKA 2013. Klik di sini 
Latihan soal Ujian Kompetisi Awal ( UKA ) 2013

BELAJAR PHP PHP TUTORIAL

PHP Tutorial


BELAJAR PHP BELAJAR PHP PHP TUTORIAL PHP TUTORIAL
PHP is a server scripting language, and is a powerful tool for making dynamic and interactive Web pages.
PHP is a widely-used, free, and efficient alternative to competitors such as Microsoft's ASP.
bE

PHP: ILMU DASAR PHP

PHP PHP
DASAR PHP PHP UNTUK PEMULA
PHP is a server-side scripting language designed for web development but also used as a general-purpose programming language. PHP is now installed on more than 244 million websites and 2.1 million web servers.[2] Originally created by Rasmus Lerdorf in 1995, the reference implementation of PHP is now produced by The PHP Group.[3] While PHP originally stood for Personal Home Page[4] , it now stands for PHP: Hypertext Preprocessor, a recursive acronym.[5]
PHP code is interpreted by a web server with a PHP processor module which generates the resulting web page: PHP commands can be embedded directly into an HTML source document rather than calling an external file to process data. It has also evolved to include a command-line interface capability and can be used in standalone graphical applications.[6]
PHP is free software released under the PHP License, which is incompatible with the GNU General Public License (GPL) due to restrictions on the usage of the term PHP.[7] PHP can be deployed on most web servers and also as a standalone shell on almost every operating system and platform, free of charge.[8]
Related site:
http://php.net
http://w3schools.com

PHP: Hypertext Preprocessor

PHP is a widely-used general-purpose scripting language that is especially suited for Web development and can be embedded into HTML. If you are new to PHP and want to get some idea of how it works, try the introductory tutorial. After that, check out the online manual.
Ever wondered how popular PHP is? See the Netcraft Survey.
original site http://php.net/
other related link

Sunday, May 26, 2013

Form Input data menggunakan PHP

OK teman, setelah anda mendapatkan kuliah tentang membuat koneksi antara PHP dengan Database, kali ini saya akan memberikan kuliah kepada Anda cara membuat input data dari PHP ke dalam database.
Berikut akan saya paparkan tahapannya:
1. Buatlah terlebih dahulu database dan table-nya.  Ingat tabel ini akan menjadi destinasi dari kuliah kita.
2. Buatlah form untuk user interface( Antar muka pengguna).
3. Buatlah file PHP untuk memproses data dari form ke database.

Baiklah daripada berlama-lama, marilah kita masuk pada fase pertama:
1. Buatlah database terlebih dahulu.  Anda buka kuliah saya tentang membuat database menggunakan PHP MyAdmin  klik di sini.

Jika itu sudah dilakukan sudilah kiranya Anda untuk masuk pada fase kedua.

2.  Buatlah form.  Anda tidak keberatan kan untuk mengetik baris program berikut:

<html>
<head>
<title>Form Entry</title>
</head>
<body>
<form name="login" action="verifikasi.php" method="GET">
<table>
<tr>
<td>Username</td><td><input type="text" name="un" size=20 class="text" /></td>
</tr>
<tr>
<td>Password</td><td><input type="password" name="sn" size=20 class="text" /></td>
</tr>
<tr>
<td><input type="submit" value="Login" class="submit"/></td><td><input type="reset" value="Clear" /></td>
</tr>
</table>
</form>
</body>
</html>

simpan dengan nama form.html pada direktory c:\Xampp\Htdoc\latihan ( jika menggunakan Xampp). Jika bukan carilah informasi mengenai default directory.