Create a HTML FORM in the php page and assign your variable to a form element (Ex: hidden field) and use the POST method to Pass it to the Destination ASP page using the action element of the form.
Ex: http://www.aspdomain.c om/target.asp
So from the ASP page you can get the POSTed data from the php.
Create a HTML FORM in the php page and assign your variable to a form element (Ex: hidden field) and use the POST method to Pass it to the Destination ASP page using the action element of the form.
Ex: http://www.aspdomain.c om/target.asp
So from the ASP page you can get the POSTed data from the php.
I agree, post data would be a good way to do it. You could also put the data into a cookie or a querystring (http://mySite.com/howTo.asp?actio n=update&title= No+time+for+los ers+cause+we+ar e+the+champions )
Comment