Yes , I tried many possibilities to send the $connection variable to next site , the last one which I used was by session based on example in article "Session Management in PHP4: A followup" (author:Mattias Nilsson)but when I tried to read above variable it return '0'
(I used below script
<?php
session_start();
$connection = ociplogon("$user","$pass","dbname");
session_register("connection");
?> )
Of course when I put manualy any value i.e.
session_start();
@connection="any value";
session_register("connection");
then I can read it on another site.
If possible , the best way is show example
(see Mattias article)
Thanks,
Gary