does anyone know how to do this in PHP:
<cfparam name="submit" default="">
<body>
<cfif submit neq "">
<cfoutput>
<cfloop from="1" to="3" index="x">
<cfset var="a" & #x#>
#Evaluate(var)#
</cfloop>
</cfoutput>
<cfelse>
<form action="post_test.cfm" method="post">
<cfloop from="1" to="3" index="x">
<cfoutput>
<cfset var="a" & #x#>
<input type="text" name="#var#">
</cfoutput>
</cfloop>
<input type="submit" name="submit" value="submit">
</form>
</cfif>
</body>
thanks!