I would set it up as follows:
.asp file is your principle plugin target. It collects the session
data and passes it to your .php page via Javascript and the URL query
string. For example,
---------------------------------------
[ ASP ]-----------------------------
<%
sessionKey = session("SessionKey")
loginGUID = session("LoginGUID")
mUserName = session("UserName")
treeGUID = session("TreeGUID")
treeParentGUID = session("TreeParentGUID")
%>
<script type="text/javascript">
window.location = "http://path.to.your/cms/plugins/php-file.php?skey=<
% response.write(sessionKey) %>&login=<% response.write(loginGUID)
%>";
</script>
---------------------------------------[ /
ASP ]-----------------------------
and then
---------------------------------------
[ PHP ]-----------------------------
<?php
$sessionkey = $_GET['skey'];
$loginGUID = $_GET['login'];
etc
?>
---------------------------------------
[ PHP ]-----------------------------
Or something like that - your mileage may vary.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"RedDot CMS Users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/RedDot-CMS-Users?hl=en
-~----------~----~----~----~------~----~------~--~---