Advertisement
Java_Volume1 Miscellaneous #101375

VarsFromForm

This subroutine creates a variable (on the fly) for each form item found on Request.Forms or Request.QueryString collections. The variable is given the same name as the form items name. It was built to duplicate some of PHPs built in functionality.

AI

สรุปโดย AI: This codebase represents a historical implementation of the logic described in the metadata. Our preservation engine analyzes the structure to provide context for modern developers.

ซอร์สโค้ด
original-source
public sub VarsFromForm
	for each item in request.form
		execute(item & "=""" & Replace(request.form(item), Chr(34), Chr(34) & Chr(34)) & """")
	next
	for each item in request.QueryString
		execute(item & "=""" & Replace(request.QueryString(item), Chr(34), Chr(34) & Chr(34)) & """")
	next
end sub
ความคิดเห็นดั้งเดิม (3)
กู้คืนจาก Wayback Machine