Kamis, 19 September 2013

Example Project of Condition

this thread contained an Example Project of Condition, before following this tutorial, if you not knowing about Condition, read my post before about Condition, Array and Looping. 1. Create new HTML Document on your Site, Right Click on Site -> New File -> name it "conditional_form.html" or what ever you want. 2. Insert this in your HTML form: 3. Create new PHP Document on your site, Right Click on Site -> New File -> name it "conditional".php"...

Rabu, 11 September 2013

Condition, Array and Looping at PHP

1. Condition There's 3 way to make Condition at PHP: if, else, elseif. Every Condition starting with if : if(codition) { //do something } if included else: if(codition) { //do something } else { //do something else } else can be used to add more condition: if(codition1) { //do activity1 } elseif(condition2) { //do activity2 } else { //do other activity } *if the condition correct or true values of the existing code in the curly braces {} will be executed. 2. Array not seems like string and number only can hold a single value, array can store/save...

Rabu, 04 September 2013

Input and Output data Biodata Project ASP.NET

Read my post before about Inputing and Output data, on this Thread, i want to share about make Biodata using Input and Output, put this method and you can modify with your own style : and Run it Ctrl + F5, input your data and see the Output :) NB: this Input and Output Without TryPars...

Selasa, 03 September 2013

Input and Output on ASP.Net

There's 2 kinds of Input and Output on ASP.Net, Without TryParse() and with TryParse() 1. Without TryParse(); Try to practice it with make a New Project, you can use your old Folder project with right clicking on 'Solution' Name it 'InputOutput' and you will focused on Program.cs part of InputOutput Insert this method, or whatever with your own style and Run it Ctrl + F5, input your form and look the output 2. With TryParse(); Try to...

Comment, Variable and Type Data on ASP.NET

1. Comment 1. Function main() Include command/statement that will process with computer, example Function main() on C# languange: static void Main (string[]args) 2. Command(statement) Use for commanding computer to do specific task, example command inside C# language: Console.WriteLine("Hello World. . ."); 3. Keyword (using) If you use function Console.WriteLine(), you must give sign to computer library file which recorded Console.WriteLine()....

Senin, 02 September 2013

Make First Project on ASP.NET [2]

Continued of Make First Project on ASP.NET . . . 2. ok next, add this Code on "Luas_Lingkaran.cs" or whatever method you want to use. 3. but dont run it, you wont get the result, add this code first on first class we have made 4. after that you can Run it now with Ctrl + F5 and look the equals of your new class operation. OK the last of this Thread is Make a Biodata from ASP.NET 1. Make a New Project and name it Biodataku.cs, or...

Make First Project on ASP.NET

Hello guys, i want to share about make a first project on ASP.NET Firstly, i want to make "Hello World" with C# 1. Open Visual Studio 2012 Above or older, and Click New Project... 2. and then look at Template tab -> Visual C# -> Windows and then we trying to make first project, so choose "Console Application" 3. you will see the blank project, but there still any standart commands 4. and add Console.WriteLine("Hello World"); inside...

Make Biodata Using Array 1 Variable on PHP

On this thread i want to share about make a biodata using array, but now im only using one variable to difine the variable. Firstly to remember about array, Array is a structured data type is useful for storing large amounts of data of the same type. Section assembles an array called Array Elements. OK here's about my example, im using the old project of my biodata, if you having it too, change only the variable, the Screenshot of Code: and looks...

Example Project Writing Style on PHP

Before scrutinizing this thread read first about Writing Style on PHP, so, now i want to share about the example project using Style on PHP, here the Screenshot of my Biodata project, on here we'll know about the different things for using any output command, like echo, print, printf, here the Live view of Dreamweaver here the code, you can do it too with your modify self project and there's the view of localhost on browser ok time for you...

Writing Style on PHP

In this thread i want to share about "Writing Style on PHP". 1. Echo echo : used to print variable or character string without using format. how to use: echo "right"; echo ("right"); example: $flname=Bagoes Rizaldy Setiambodo; echo ("My Full Name is : %flname"); 2. Print and Printf Print : used to print variable or character string without using format. example: $flname=Bagoes Rizaldy Setiambodo; print ("My Full Name is : %flname"); Printf : used to print variable or character string using format. -> for String format use : %s ->...