- This topic has 3 replies, 3 voices, and was last updated 1 month, 1 week ago by
visualizer.
-
AuthorPosts
-
2025-11-21 at 7:34 am #85475
ing11
ParticipantHello,
I’ve working on a design, when the page loads up the customer must fill in there name and email address.
Is there a way for the information that’s filled in to be sent to the website host?Additionally when a customer completes a configuration there will be an option to save what they’ve created.
The changes should be saved against the information they provided above i.e name and email address, This information can be used to load up only the configurations that customer created and not all configurations saved on the website.Is this possible if so how?
The completed design will be embedded on a WordPress website.
2025-11-21 at 6:02 pm #85478
Alexander KovelenovStaffHi,
The first task is quite trivial. You can design a web form with Puzzles (check out the ready-to-use Inquiry Form snippet from the library) and send it to a web server. To process the data received on the server side you can use the built-in send-to-email feature of the Verge3D for WordPress plugin or use some third-party form-sending solution.
The second task requires some serialization (e.g. converting data to a form that can be stored/transmitted over network) of the user configuration and providing this data to a web server. Possible scenarios of how this can be achieved:
- Using special hidden form fields augmenting the name/email form from above. For example: “color”: “red”, “size”: “XL” and so on
- Using some human-friendly textural representation of the configuration and providing this as hidden text field of the form being sent (this makes it a variation of method #1)
- Serializing configuration as URL params of the app page and providing the full link to a web server via hidden text field (again this would be a variation of method #1).
- Serializing all configurations to JSON (or perhaps CSV) and attaching this JSON to the form as a file.
- Using registration/authentication mechanisms of WordPress and implementing custom-made account where users can store all their configurations.
Methods 1-4 can be developed with just Puzzles and might use common server-side solutions described above. Method 5 is the hardest as it will require custom PHP coding.
2025-11-21 at 7:45 pm #85479ing11
ParticipantThank you, I’ll try the methods highlighted above
2025-11-24 at 11:11 am #85498
visualizerCustomerThis is interesting learning.
-
AuthorPosts
- You must be logged in to reply to this topic.
