I want to create a session var with PHP:
<? session_register("hola"); $hola=5; ?>
And then, i want to read the value of this variable from a ASP file:
<% value=session("hola") %>
But i get nothing.... :o(
Do you know if it`s posible to do this?