Signature Image

User 2848291 Photo


Registered User
6 posts

I recently purchased Web Form Builder. I'm creating a pre-flight checklist for my company, and i want to use the signature field. I'm taking all the data captured from the form, and putting it into a PDF using jspdf. What happens to the signature image, or rather, how is it created, and where is it stored once i click submit? I want to add the image to the pdf.

Thanks in advance!
User 187934 Photo


Senior Advisor
20,271 posts

Hi Hawks,
I think the signature is only passes through the email. There's probably a way to alter the scripts to save it to your host.
I can't hear what I'm looking at.
It's easy to overlook something you're not looking for.

This is a site I built for my work.(RSD)
http://esmansgreenhouse.com
This is a site I built for use in my job.(HTML Editor)
https://pestlogbook.com
This is my personal site used for testing and as an easy way to share photos.(RLM imported to RSD)
https://ericrohloff.com
User 2848291 Photo


Registered User
6 posts

Ok. Next question. If i set the confirmation page to redirect to another url, will it pass all the parameters to that page?
User 187934 Photo


Senior Advisor
20,271 posts

Yes you can use the SESSION variables.
http://www.coffeecup.com/forums/welcome … post252935

A little more here.
http://www.coffeecup.com/forums/web-for … art-forms/
I can't hear what I'm looking at.
It's easy to overlook something you're not looking for.

This is a site I built for my work.(RSD)
http://esmansgreenhouse.com
This is a site I built for use in my job.(HTML Editor)
https://pestlogbook.com
This is my personal site used for testing and as an easy way to share photos.(RLM imported to RSD)
https://ericrohloff.com
User 2848291 Photo


Registered User
6 posts

Ok. I've read both post, but i can't seem to get this to work. what am i missing. i did a test page with nothing but this:

session_start();
echo $_SESSION['post'];

and nothing. blank page. what am i missing here?

Thanks in advance for the help!
User 187934 Photo


Senior Advisor
20,271 posts

Did you use a php page for the above?
I can't hear what I'm looking at.
It's easy to overlook something you're not looking for.

This is a site I built for my work.(RSD)
http://esmansgreenhouse.com
This is a site I built for use in my job.(HTML Editor)
https://pestlogbook.com
This is my personal site used for testing and as an easy way to share photos.(RLM imported to RSD)
https://ericrohloff.com
User 2848291 Photo


Registered User
6 posts

Yes.
User 187934 Photo


Senior Advisor
20,271 posts

Is there php errors on your server in the forms directory?
I can't hear what I'm looking at.
It's easy to overlook something you're not looking for.

This is a site I built for my work.(RSD)
http://esmansgreenhouse.com
This is a site I built for use in my job.(HTML Editor)
https://pestlogbook.com
This is my personal site used for testing and as an easy way to share photos.(RLM imported to RSD)
https://ericrohloff.com
User 2848291 Photo


Registered User
6 posts

No errors that i saw.
User 187934 Photo


Senior Advisor
20,271 posts

Give this a try.
<?php
session_start();
$post = $_SESSION['post'];
echo "<table>";
foreach ($post as $key => $value) {
echo "<tr>";
echo "<td>";
echo $key;
echo "</td>";
echo "<td>";
echo $value;
echo "</td>";
echo "</tr>";
}
echo "</table>";

?>
I can't hear what I'm looking at.
It's easy to overlook something you're not looking for.

This is a site I built for my work.(RSD)
http://esmansgreenhouse.com
This is a site I built for use in my job.(HTML Editor)
https://pestlogbook.com
This is my personal site used for testing and as an easy way to share photos.(RLM imported to RSD)
https://ericrohloff.com

Have something to add? We’d love to hear it!
You must have an account to participate. Please Sign In Here, then join the conversation.