Thread
:
If Statements
View Single Post
08-31-2005, 01:21 PM
#
2
(
permalink
)
toe_cutter
Code Monkey
Join Date: Aug 2002
Location: Boston, MA
Posts: 79
This
if (housecolour != 'Y' && 'G')
Should probably be
if ( (housecolour != 'Y') && (housecolour != 'G') )
the same goes for your do/while statement
Toe
__________________
toe_cutter
View Public Profile
Visit toe_cutter's homepage!
Find More Posts by toe_cutter