Today, I learned about Analytical Thinking for Problem Solving. The training was very quick and very strict. Taught about what’s “the real problem” and “concern” thing. Definition of problem is something that occur which made some deviation, unknown the root cause, need to know the root cause, the option, and anticipation plan for the future. …
Category Archive: english
Jun 20
HOW TO MAKE LOGIN FORM (register.php)
In this lesson, we build register form for our registration page. This is the code to make the form: name it “register.php” <form id=”form1″ name=”form1″ method=”post” action=”validate.php”> <p> </p> <p> </p> <div align=”center”> <table width=”50%” border=”0″ cellspacing=”2″ cellpadding=”2″> <tr> <th colspan=”2″ scope=”col”><div align=”center”>REGISTER FORM</div></th> </tr> <tr> <th width=”49%” scope=”row”><div align=”left”>USERNAME</div></th> <td width=”51%”><label> <input type=”text” name=”username” id=”username” /> …
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….
Jan 30
Save your privacy tweet for yourself !
Save your privacy tweet for yourself ! Here, I give you solution! Whatever you post to this site, will be saved into database and you can read it whenever you want. you can use this site as your diary! So, this is the main page…. if you want to see your post, just click “Your …
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 …
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 …
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 …
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, …
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
Recent Comments