I want to create a QR Code (Quick Response Code) for the client who singed up the form. I copy some code in the internet. i want it connect to my form and database.
I want to make sure I understand correctly,
do you mean creating an image (in QR Code format) that contains data for each client from the database collection ?
Thank you Roi,
Yes, thatās right, I want to create an QR Code that contains data for each client from the my database collection, but Iām struggling doing it. could you please lend me some of your knowledge how to achieve it?
I badly need it. Iām not really that good in coding. I hope you could help me. Thank you again
I was wondering if I could get some further in depth explanation here please as I am attempting a similar end goal and donāt understand what you meant when you said āReplace the HTML element with an image element. Paste this code in āregdog Profile (ID)āā I have a html code that shows the sporting fixtures relevant to specific teams in my database and I need it to change depending on the selected team. Your advice regarding replacing the html element with an image element- is this within the database table or on the dynamic page?
This is an example of the html code I have for one division (I have different codes for the different team divisions:
This is my website:
Iāve put the html code boxes in this page to demonstrate what I would love it to show but as they arenāt able to be āconnected to dataā I donāt know how to link it up!
Hi Imogen , āReplace the HTML element with an image element. Paste this code in āregdog Profile (ID)āā refers to a specific API that returns QR Code image.
If you need to pass information to your HTML component you need some this else.
There are two relevant methods for you. postMessage and onMessage .
Here is a great example of how to communicate with an iFrame.
In a Dynamic page you probably need to use getCurrentItem method .
Here is a sample example from the Dynamic page:
I have a dynamic page which consists of 5 names (text boxes) and 5 html elements. Each html element differs to the other at data-identifier=āxxxxxā only (Please see in the code above). Now I want that the data-identifier of each html element to be connected to their respective text box. so that whatever values comes in the textbox1 (say Pepper) from my database is copied to data-identifier=āPepperā of html1.
Let say text box with id = #text1 and the html element with id = #html1 . The text box is connected to some field called #Name 1 in my database called #Celebrities . Now I want my data identifier in my html element as posted above to be connected to the text box with id #text1 . So that whatever value comes in my textbox from the database when the dynamic page loads is copied to the data-identifier in html element.
Any help from you will be really very meaningful to me.