ในasp สร้างหน้าฟอร์มรับข้อมูลแล้วเวลาบันทึกข้อมูลผมก็เรียกwebpageหน้านี้อีกเพื่อนรันscriptบันทึกข้อมูล คือผมเช็ค if(request"data")<>"" then
บันทึกข้อมูล
else
ฟอร์มรับข้อมูล
end if
#####ถ้าเป็นPHP เขียนอย่างไรครับ
<%
if Request.QueryString("Action")="Add" Then
Response.Write("name")
End if
%>
<form name="form1" method="post" action="<%=Request.ServerVariables("SCRIPT_NAME")%>?Action=Add">
<input type="text" name="name">
<input type="submit" name="Submit" value="Submit">
</form>