Technical Question regarding Session Variables
-
Scenario:
Want to send our members unique links to a Web-Based Form so they can submit any changes.We would provide them with a link that contains their current form field data (encrypted) within the URL parameter clause
Given:
The WP Form Plugin Vendor provides a way to add PHP functions (HOOKS) via add_filter or add_action, the thought was to temporarily capture the URL parameter values in the post_meta table (the idea being post_id is unique so could be uniquely associated with the data)Questions:
1) the Vendor has NOT provided Post_ID for all of its HOOKS … this leads me to wonder if they don’t actually make a post entry until after the form is submitted … this is too late as the data needs to be decrypted and assigned to the Form Fields2) is there a WP session/connection id available that can uniquely identify “THIS” user?
3) Old-World, Top-Down methodology would just assign GLOBAL VARIABLES … but … very concerned with what happens when 2 or more users use this Form at the same time … one would hope within the multiuser UNIX world that each WP session would generate a copy of itself and all its associated
- The topic ‘Technical Question regarding Session Variables’ is closed to new replies.