Ну прям все покажи и расскажи. Какие наработки есть ?
Для просмотра ссылки Войди или Зарегистрируйся - welcome to phpworld in russia
На vb выглядело примерно так
сама форма
<html>
<title>(Создание Сопроводительной Ведомости)</title>
<%@ LANGUAGE=VBScript%>
<% Response.Expires = 10
Response.AddHeader "pragma", "no-cache"
%>
<%
Dim vist, currentcount
visit = Application("visitors")
currentcount = Application("myCounter")
%>
<!Время создания!>
<BODY bgcolor="#99CCFF">
<p align="center">Время создания Ведомости <%= Now() %>.
</BODY>
<%= strGreeting %>
<!запись счетчика!>
<%%>
<!Форма ведомости!>
</body>
</p>
<form method="get" action="result.asp" action=""sav"" target="_blank">
<p style="margin-top: 0; margin-bottom: 0" align="center"><span lang="ru"><font size="4">Адрес Отправителя
</font> </span></p>
<p style="margin-top: 0; margin-bottom: 0" align="center"><font size="4">
<select size="1" name="adress_otpr" style="font-size: 8pt">
<option>Выберите Адрес</option>
<option>адрес 1</option>
</select></font></p>
<p style="margin-top: 0; margin-bottom: 0" align="center"><span lang="ru"><font size="4">Наименование документа</font></span></p>
<p style="margin-top: 0; margin-bottom: 0" align="center"><span lang="ru"><font size="4"> <textarea rows="2" name="naimen_dokum" cols="50"></textarea></font></span></p>
<p style="margin-top: 0; margin-bottom: 0" align="center"><span lang="ru"><font size="4">ФИО Отправителя</font></span></p>
<p style="margin-top: 0; margin-bottom: 0" align="center"><span lang="ru"><font size="4"> </font></span><font size="4"><input type="text" name="femil_otpav" size="60"></font></p>
<p style="margin-top: 0; margin-bottom: 0" align="center"><span lang="ru"><font size="4">Должность Отправителя</font></span></p>
<p style="margin-top: 0; margin-bottom: 0" align="center"><span lang="ru"><font size="4"> </font></span><font size="4"><input type="text" name="doljnost_otprav" size="60"></font></p>
<p style="margin-top: 0; margin-bottom: 0" align="center"><span lang="ru"><font size="4">Адрес Получателя</font></span></p>
<p style="margin-top: 0; margin-bottom: 0" align="center"><span lang="ru"><font size="4"> </font></span><font size="4"><select size="1" name="adres_poluchat" style="font-size: 8pt">
<option>Выберите адрес</option>
<option>адрес2</option>
</select></font></p>
<p style="margin-top: 0; margin-bottom: 0" align="center"><span lang="ru"><font size="4">ФИО Кому направляеться</font></span></p>
<p style="margin-top: 0; margin-bottom: 0" align="center"><span lang="ru"> </span><input type="text" name="FIO_komu" size="50"></p>
<p style="margin-top: 0; margin-bottom: 0" align="center"><input type="submit" value="СОЗДАТЬ" name="creat">
<span lang="ru"> </span><span lang="ru">
</span>
<input type="reset" value="ОЧИСТИТЬ" name="B2"></p>
</form>
<p style="margin-top: 0; margin-bottom: 0" align="center">
<body bgcolor="#99CCFF">
<!Подтверждение!>
<%%>
<body bgcolor="#99CCFF">
</p>
<p style="margin-top: 0; margin-bottom: 0" align="center"><span lang="ru"> </span></p>
</body>
</html>
Собственно на странице result.asp происходило извлечение данных Request.QueryString, оторажение их в текстовом варианте и сохранение:
basepath = Server.MapPath("results/")
Set fs = CreateObject("Scripting.FileSystemObject")
' --------------- Статистика -------------------Cut
' Запись
sDate = Date
Set f = fs.OpenTextFile(basepath & "\log" & Right(sDate,2) & Mid(sDate,4,2) & Left(sDate,2) & ".htm", 8, true, 0)
f.WriteLine((numArt) & "||| " & Time & "||| " & Date & "||| " & Request.QueryString("adress_otpr") & "||| " & Request.QueryString("naimen_dokum") & "||| " & Request.QueryString("femil_otpav") & "||| " & Request.QueryString("doljnost_otprav") & "||| " & Request.QueryString("adres_poluchat") & "||| " & Request.QueryString("FIO_komu"))
f.Close
' --------------- Статистика -------------------Cut
Set fs = nothing
Set f = nothing
%>
Мне надо чё таким же акаром всё это дело сохранялось в базу mysql только методами php...