I am fairly new to coding in PHP, and have recently been working on our intranet writing an application that connects to a Sybase database.
My question is: Can you carry a remote Sybase connection across multiple pages?
I know about Persistent connections, but they don't seem to be working, I am still seeing it create multiple connections when I refresh or traverse through pages that are creating new persistent connections.
I have tried serializing the connection object and storing it and then unserializing it on another page using sessions, but I get a link index error.
Any help would be greatly appreciated!