Click to See Complete Forum and Search --> : Your Biz Card Demo Script - Anyone Got One?


verbatim
09-19-2003, 07:20 AM
Hi.

I'm a designer looking for a script that will take information typed into text boxes and place it on the page in specific spots, like these business card sites have where the person can actually preview their name and info on the business card background before they order.

The scripts I've seen on sites are huge.

I am not using this for business cards, but instead for the back cover of a book. So people can see what their biography would look like.

I'd like for them to upload their photo to the cover, too, which is probably another script.

Am I asking for the moon? :D

Thanks to any and all who respond.

pyro
09-19-2003, 08:07 AM
Try something like this:

<form action="">
<input type="text" onkeyup="document.getElementById('text').innerHTML=this.value;">
</form>
<div id="text"></div>As far as allowing users to upload an image, it is going to require some serverside language. I use and recommend PHP...