ok, well, i'll try it some more, but i'm not sure if i'm clear if it's possible or not :queasy:
let me explain more theoretically what i want to do:
while having users enter data into a web form, i want to immediately alert them if an email they enter already exists in the database. to do this, i was hoping to first query the database, put all the emails in one giant PHP variable string...then somehow write this PHP variable as a javascript variable so the following function can access it...
after a user types an email into the form field, use a javascript event (onBlur) to call a js function that runs a string search checking if the email just entered exists in the hopefully now Javascript variable of all emails....
pipe dream? ideas on a better way to do it?