I currently have a html web page containing both visual basic and java script sections. As a result, it loads on the client side. The client answers a series of questions. Once the client has provided the information requested, he/she clicks on a "Submit" button. I want that button to transfer the answers provided on the client side to a sql database operating on the server side. I currently have a visual basic script that creates an insert string for the sql database on the client side when the "Submit" button is clicked. How do I get this insert string from the client side to operate on the server side to update the sql database? Can I pass the insert string to a php script that connects to and opens the sql database so that the insert string can be used to insert the desired data? If yes, wouldn't this require calling a php function from within a visual basic script operating on the client side and passing the insert string to the php function operating on the server side?