you could send the information through the address bar?
header ("Location: yourpage.php?yourfield=84578")
then you can retrieve the field from the address bar by using
$_GET['yourfield']
you could send the information through the address bar?
header ("Location: yourpage.php?yourfield=84578")
then you can retrieve the field from the address bar by using
$_GET['yourfield']
Hi, im just trying to create my first asp script on some free webspace ive got. All im trying to do is get the time into a text box with the following code:
<%
response.expires=-1
response.write(time)
%>
But instead of actually running the script the browser just writes the script in the text...