It does if the form submit is an image. FORM.name.x and FORM.name.y will be passed in the form post representing the coords of the point you click the button.
I can't see anything wrong with a quick scan. Make some assumptions about what should be happening throughout the code and cfdump data to screen. Dump all the queries, the form scope and bRegistrationSuccess as a start. Adrian Lynch -----Original Message----- From: Todd Cullen Darren, It looks like you are trying to access a property on a FORM variable that doesn't exists. FORM.register_button is a valid FORM variable but you've added ".y" to the end of it. There will never be a property defined using "FORM.register_button.y" so all your database-related logic gets skipped. Remove ".y" and give it another try. Best, Todd Cullen Senior Developer Pier Interactive email: [EMAIL PROTECTED] > Can anyone please tell me where i am going wrong? i have built a form > for registering users but i want a message to appear in the header to > say if someone has already logged in with that email address if they > input it into the email field. can any1 see if there is any flaws in > the code below? i cant see anything myself? its baffled me ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Get the answers you are looking for on the ColdFusion Labs Forum direct from active programmers and developers. http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72&catid=648 Archive: http://www.houseoffusion.com/groups/CF-Newbie/message.cfm/messageid:3147 Subscription: http://www.houseoffusion.com/groups/CF-Newbie/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.15
