View Single Post
Old 03-06-2005, 11:21 AM   #3 (permalink)
macdude425
macdude425's Avatar
 
Member (again)

Join Date: Jan 2005

Location: Raul's Wild Kingdom...How 'bout that, huh?

Posts: 4,200

macdude425 is on a distinguished road

Send a message via AIM to macdude425 Send a message via Yahoo to macdude425
Default

I think I found your problem.
Code:
IF userid = Peter THEN
PRINT "Please enter your password to continue."
ELSEIF userid = Peteriscool THEN
This needs to be:
Code:
IF userid = "Peter" THEN
PRINT "Please enter your password to continue."
ELSEIF userid = "Peteriscool" THEN
Since you defined userid as a string, all possible values have to be in quotes.

Hope that helps some.
__________________



Debian Support Forums!
macdude425 is offline