I have a couple of questions.
I'm building an app that helps me manage some client intake forms that works fairly simply. The main form has a grid that works like a TListview. I'll get an order in and I'll ADD CLIENT. It will add their name, phone# and email to the DB and update it on the grid.
Then I want to get a link to that user's Intake data / Form and send it to them, with something like their phone# or email as a querystring arg to select their record. (I'll hash the value so it's not readable.) They'll click the link and it will find their record then open the Intake Form and populate it with whatever data is there, then open the form for them to view and edit the data.
How do I get a link (URL) to the app and make it work?
How do I test it using Localhost?
Initially, their data record will be empty, except for an ID and maybe the field I use to identify them with (phone or email).
I'm noticing a lot of webs these days are putting text into input fields that are hints as to what to put there. They're a little lighter, and it's not like "real text", so when you click in the field (OnEnter) it sometimes will clear the field, and sometimes will just put the cursor at the front and clear after you type in the first character.
How can I do that? I'm talking about Edit and Memo fields.
When the user has filled out the form, they can hit the Submit button and the data is saved to their record in the DB and a status flag is set to record the timestamp when they returned the form. That will be displayed in the grid as well. Since the form is part of the app, it will just save or update the fields in the DB.
Then I'll see it was updated and look over the form, dispense with with the data, and then click a button to Archive the entry so it is hidden. If there's anything wrong, I'll just send them the link again and tell them what needs to be addressed, and the earlier process will repeat.
This is just for my own use, it's very light-duty, and hopefully it's temporary until a vendor make something similar work in their app.