TAILIEUCHUNG - ICT 5 Web Development - Chapter 3.1: Conditional Statements

ICT 5 Web Development - Chapter : Conditional Statements Using Conditional Test Statements, Using Loops to Repeat Statements, Conditional Test Statements, Using the elseif Clause, Using the switch Statement, Using the while loop. | Vietnam and Japan Joint ICT HRD Program Objectives To learn to use conditional test statements to compare numerical and t t t t i l d string data values To learn to use looping statements to repeat statements To learn to use logical test operators to create com-pound conditional test comstatements ITC 5 – Web Programming Chapter . Conditional Statements Nguyen Thi Thu Trang trangntt@ 2 Content Content 1. Using Conditional Test Statements 2. Using Loops to Repeat Statements 1. Using Conditional Test Statements 2. Using Loops to Repeat Statements 3 4 1 . Using the if Statement 1. Conditional Test Statements Conditional statements provide a way for scripts to test for certain data values and then to react differently depending on the value found. Will examine – the if statement, statement – the elseif clause, – the else clause, – and the switch statement. Use an if statement to specify a test condition and a set of statements to run when a test condition is true. true. if ($average > 69) { When $average is greater than 69 execute these statements. $Grade="Pass"; print "Grade=$Grade "; } print "Your average was $average"; if $average was equal to 70 then the above would output: Your average was 70 5 6 PHP Test Operators a. Test Expressions Operator Test Effect Example Result – Test operators work much like the expression operators. – The if statement above uses the greater than (>) operator to test whether $average is greater than 69. – Test operators evaluate to true or false 7 == Equal to if ($x == 6){ $x = $y + 1; $y = $x + 1; $ ; } Run the second and third statements if the value of $x is equal to 6. != Not equal to if ($x != $y) { $x = 5 + 1; } Run the second statement if the value of $x is not equal to the value of $y. Greater than if ($x > 51) { print " " "OK"; } Run the second statement if the value of $x is greater than 51 g eate 51. >= Greater than or equal to if (16 >= $x) { print "x=$x"; } Run

TỪ KHÓA LIÊN QUAN
TAILIEUCHUNG - Chia sẻ tài liệu không giới hạn
Địa chỉ : 444 Hoang Hoa Tham, Hanoi, Viet Nam
Website : tailieuchung.com
Email : tailieuchung20@gmail.com
Tailieuchung.com là thư viện tài liệu trực tuyến, nơi chia sẽ trao đổi hàng triệu tài liệu như luận văn đồ án, sách, giáo trình, đề thi.
Chúng tôi không chịu trách nhiệm liên quan đến các vấn đề bản quyền nội dung tài liệu được thành viên tự nguyện đăng tải lên, nếu phát hiện thấy tài liệu xấu hoặc tài liệu có bản quyền xin hãy email cho chúng tôi.
Đã phát hiện trình chặn quảng cáo AdBlock
Trang web này phụ thuộc vào doanh thu từ số lần hiển thị quảng cáo để tồn tại. Vui lòng tắt trình chặn quảng cáo của bạn hoặc tạm dừng tính năng chặn quảng cáo cho trang web này.