how many characters can be passed through get?
I'm making an invitation script, and if an invited email is already in the member list I'm passing it through the url like
?success=1&foundEmails=email@1.com,email@2.com,email@3.com
etc. To alert them that these people were already found in the database.
GET [solved]
Moderator: General Moderators
GET [solved]
Last edited by s.dot on Thu May 04, 2006 7:12 am, edited 1 time in total.
Set Search Time - A google chrome extension. When you search only results from the past year (or set time period) are displayed. Helps tremendously when using new technologies to avoid outdated results.
Mm, that should be enough.
I also figure that I could look up their unique ID in the database and pass that instead of the email.
?success=1&foundMembers=1123,1383,1839
Then I'll have to look up those emails that correspond with those ids to display them. But this way I shouldn't have a problem with the length.
Thanks.
I also figure that I could look up their unique ID in the database and pass that instead of the email.
?success=1&foundMembers=1123,1383,1839
Then I'll have to look up those emails that correspond with those ids to display them. But this way I shouldn't have a problem with the length.
Thanks.
Set Search Time - A google chrome extension. When you search only results from the past year (or set time period) are displayed. Helps tremendously when using new technologies to avoid outdated results.