Search the Community
Showing results for tags 'elseif'.
-
This page explains how to use If...Then...ElseIf:http://www.w3schools.com/vbscript/vbscript_conditionals.asp>>You can use the If...Then...ElseIf statement if you want to select one of many blocks of code to execute:<< The code example shows ElseIF and the expression on the same line: >>ElseIf i = 11 Then<< but does not mention that this is required. You must either keep 'ElseIf' and the <expression> on the same line or use the line break/continuation character to split the line:ElseIf _ i = 11 Then Otherwise you will encounter a complier error.
-
Hello everyone, I'm new to php so please bare with me on this. Before i explain my problem, let me give you guys a brief background on what i'm doing.i have a list of existing clients in my database that have a client# hence $code. Every clients will be sent an email that contain a link with their # aka $code. so when they arrive at my page, the address bar should also contain their $code.At the same time, there are also potential clients going to my webpage without client# ($code). Eventually both existing and potential clients will have to fill out a form. with their name and email. Problem