I'm working on a tutorial that explains how to use jQuery to Get and Post data from an external page. The tutorials are generally simple, but this one is confusing because the external data is stored in pages with an .asp extension, which I know nothing about.
How should I modify the text from these pages so it works with PHP?
<%
response.write("This is some text from an external ASP file.")
%>
<%
dim fname,city
fname=Request.Form("name")
city=Request.Form("city")
Response.Write("Dear " & fname & ". ")
Response.Write("Hou live well in " & city & ".")
%>