I have an if statement with 3 options in my cgi script.
Is the correct syntax like this
if (condition one) {
do this}
else if (condition two) {
do this}
else (condition three) {
do this}
I've got this implemented, but it keeps throwing up error messages.
am i doing something wrong?
Is the correct syntax like this
if (condition one) {
do this}
else if (condition two) {
do this}
else (condition three) {
do this}
I've got this implemented, but it keeps throwing up error messages.
am i doing something wrong?