want a simple receiving form where the object ID is scanned into a text box and this (onBlur?) triggers a sbmit/post event that calls a php file. I am not too sure where to start.
thank you for your thoughtful attention
dan bloch
If I'm understanding you correctly, this is very simple.
<form id="myform" method="post" action="myphpfile.php"> <input type="text" name="object_id" onchange="document.myform.submit();" /> </form>