• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Requirment

 
Ranch Hand
Posts: 120
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
My requirement is :

if user1 signup(signup screen) with all his details. His detail should sent to user2 thru email and a URL. Once the user2 check the details(In this records) and click that URL. the user1 details should be updated to the database.

My main question is how do I build that URL send those to user2.

please give your valuable suggestions or point me to some documentation.

Thanks in advance
 
Ranch Hand
Posts: 294
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
How many detail fields? If few, I'd add them in URL, like http://myhost/updaterecord?detail1=vlue1&detail2=value2....
If details are to many, then you can store it in temporary record and pass id of the record in URL like http://myhost/updaterecord?recordid=xxxx
If a reviewer can change details, the 2nd approach is preferred.
 
reply
    Bookmark Topic Watch Topic
  • New Topic