<HTML>
<HEAD>
<TITLE>Re: [OPLINTECH] webform question</TITLE>
</HEAD>
<BODY>
<FONT FACE="Calibri, Verdana, Helvetica, Arial"><SPAN STYLE='font-size:11pt'><BR>
Hi Amy, <BR>
<BR>
I am not familiar with SirsiDynix (we are an Innovative Interfaces shop) but it shouldn’t be difficult to include some php on your html page (granted SirsiDynix gives access to edit the page). If not, you can ask them to include a couple variables (assuming you’re using PHP) into your form to gather information such as the IP address, browser, Date/Time, etc.<BR>
<BR>
Something like:<BR>
<BR>
<BR>
$ipi = getenv("REMOTE_ADDR"); <BR>
$httprefi = getenv ("HTTP_REFERER");<BR>
$httpagenti = getenv ("HTTP_USER_AGENT");<BR>
<BR>
<BR>
Then you/they would set the fields on your form as hidden:<BR>
<BR>
<input type="hidden" name="ip" value="<?php echo $ipi ?>" /><BR>
<input type="hidden" name="httpref" value="<?php echo $httprefi ?>" /><BR>
<input type="hidden" name="httpagent" value="<?php echo $httpagenti ?>" /> <BR>
<BR>
When the user submits the form, you’ll be getting this additional information.<BR>
<BR>
<BR>
HTH,<BR>
<BR>
Victor<BR>
<BR>
<BR>
</SPAN></FONT><FONT SIZE="1"><FONT FACE="Verdana, Helvetica, Arial"><SPAN STYLE='font-size:9pt'>Victor Zuniga<BR>
Westerville Public Library<BR>
Computer Services Department<BR>
126 S. State St. | Westerville, OH 43081<BR>
Phone:</SPAN></FONT></FONT><FONT SIZE="2"><FONT FACE="Calibri, Verdana, Helvetica, Arial"><SPAN STYLE='font-size:10pt'>614.259.5019<BR>
<BR>
<BR>
<BR>
<BR>
</SPAN></FONT><SPAN STYLE='font-size:10pt'><FONT FACE="Consolas, Courier New, Courier">Amy Wilson wrote:<BR>
> Does anyone know if there is a way to track who submitted a webform? <BR>
> The last few days someone has been spoofing us via the webform, by <BR>
> submitting library card applications with obvious inaccurate <BR>
> information. Our circ manager wanted to know if there is a way to catch <BR>
> who is doing that as she suspects it is the same person daily.<BR>
> <BR>
> <BR>
> <BR>
> Amy Wilson<BR>
> <BR>
> Network Administrator<BR>
> <BR>
> Rocky River Public Library<BR>
> <BR>
> 440-895-3764<BR>
> <BR>
> <BR>
> <BR>
> <BR>
> -- <BR>
> This message has been scanned for viruses and<BR>
> dangerous content by *MailScanner* <<FONT COLOR="#0000FF"><U><a href="http://www.mailscanner.info/">http://www.mailscanner.info/</a></U></FONT>>, and is<BR>
> believed to be clean.<BR>
</FONT></SPAN></FONT><BLOCKQUOTE><FONT SIZE="2"><SPAN STYLE='font-size:10pt'><FONT FACE="Calibri, Verdana, Helvetica, Arial"><BR>
<BR>
<BR>
<BR>
<BR>
<HR ALIGN=CENTER SIZE="3" WIDTH="95%"></FONT><FONT FACE="Consolas, Courier New, Courier">_______________________________________________<BR>
OPLINTECH mailing list<BR>
<a href="OPLINTECH@oplin.org">OPLINTECH@oplin.org</a><BR>
<a href="http://mail.oplin.org/mailman/listinfo/oplintech">http://mail.oplin.org/mailman/listinfo/oplintech</a><BR>
Search: <a href="http://oplin.org/techsearch">http://oplin.org/techsearch</a><BR>
</FONT></SPAN></FONT></BLOCKQUOTE><FONT FACE="Calibri, Verdana, Helvetica, Arial"><SPAN STYLE='font-size:11pt'><BR>
<BR>
</SPAN></FONT>
</BODY>
</HTML>