Programming ideas
My thoughts about vb.Net, asp.net, Php, Javascript and more.
Arithmetic Operators in php
Operator
Description
Example
Result
+
Addition
x=2
x+2
4
-
Subtraction
x=2
5-x
3
*
Multiplication
x=4
x*5
20
/
Division
15/5
5/2
3
2.5
%
Modulus (division remainder)
5%2
10%8
10%2
1
2
0
++
Increment
x=5
x++
x=6
--
Decrement
x=5
x--
x=4
MESSAGE BOX YES/NO CONDITION IN ASP.NET (VB CODE)
Dim A As MsgBoxResult
A = MsgBox("DO YOU LOVE ME", MsgBoxStyle.YesNo, "143")
If A = MsgBoxResult.Yes Then
MsgBox("I LOVE YOU")
ElseIf A = MsgBoxResult.No Then
MsgBox("I HATE YOU")
End If
Newer Posts
Older Posts
Home
Subscribe to:
Posts (Atom)