A
|
ann 9/9/2010 |
Hi, $xt->assign("custom_link","<a href=http://www.custom.com/".$_SESSION["SessionVariable"].">www.custom.com</a>");
|
E
|
electromotive 9/9/2010 |
Your custom PHP script can join the session. |
C
|
coolumanga author 9/9/2010 |
Your custom PHP script can join the session. You don't need to do an explicit session_start() At the start just add: include("../include/dbcommon.php"); (fixed up to see your path) Then you can access the session variables. Look at the generated php as template.
|
C
|
coolumanga author 9/10/2010 |
Hi, proceed to the Visual Editor tab, switch to the HTML mode and add {$custom_link} to the desired place. Then fill it in the Before display event on the Events tab. Here is just a sample: $xt->assign("custom_link","<a href=http://www.custom.com/".$_SESSION["SessionVariable"].">www.custom.com</a>");
|
C
|
coolumanga author 9/15/2010 |
[quote name='coolumanga' date='10 September 2010 - 10:32 AM' timestamp='1284091365' post='52596'] |