Monthly Archive: January 2012

Jan 31

Cooperative Information System

This is my project that manage about Cooperative. It’s manage about saving, loan, etc. click HERE if you want to try…

Jan 31

Travel Agency Information System

This is one of my product, Travel Agency Information System. click HERE if you want to try….  

Video

Encryption Decryption SDCARD Data on Android

Jan 30

Teknologi Akses Jamak

FDMA ( Frequency Division Multiple Access ) – Contoh : AMPS) – Tiap pengguna memiliki frekuensi kerja tertentu   TDMA ( Time Division Multiple Access ) – Contoh : IS-54/136, GSM) – Tiap pengguna celah waktu tertentu pada frekuensi kerja tertentu   CDMA ( Code Division Multiple Access ) – Contoh : IS-95, J-Std. 008 …

Continue reading »

Jan 29

PHP tutorial Part8

INSERT THE ANOTHER PAGE on PHP You don’t have to rewrite the same code in every page in your web if the code is must be declare in every page. You can use INCLUDE or REQUIRE to call the other page, so you don’t have to write on every page the same code. INCLUDE to …

Continue reading »

Jan 29

PHP tutorial Part7

KNOW ABOUT POST After you learn about HTML, you will know that HTML has method “POST” to send information for from PAGE into another page. For example: Previous.php <html><body> <form action=”next.php” method=”post”> <input type=”text” name=”var” size=”25″/> <input type=”submit” value=”Submit”> </form> </body></html> In other page (next.php) you can get the value of variable that declared in …

Continue reading »

Jan 29

PHP tutorial Part6

LOOP Loop is used to repeat the PHP codes. If you want to repeat the codes of PHP for several conditions, you don’t have to write it all, just use loop. WHILE While is used to loop the codes inside the {} when the condition is TRUE. For example: <? $a = 1; while ($a …

Continue reading »

Jan 29

PHP tutorial Part5

CONDITIONAL STATEMENT IF The syntax to write “IF” function in PHP is <? If (condition){ statement;} ?> The code above, when the condition is right, so the system will execute the statement. If not, the system will neglect the statement inside the {}. If you want to make another statement if the condition is FALSE, …

Continue reading »

Jan 29

PHP tutorial Part4

ARRAY Array is Index that allows you to make one variable for variety of value. Array can be declare with numeric or string. For Example: or

Jan 29

PHP tutorial Part3

Arithmetic Operator There are several operator for Arithmetic that we use on PHP. Like others programming language, PHP have common operator. (+) adder: (-) subtract: (/) divider : (*) multiplier : (%) mod: For example: TRUE AND FALSE Compare the variable is used to make decision of the program. You can use the comparison for …

Continue reading »

Older posts «