here's my question:
Let's say I connect to a mysql database using a custom mysql class which has a connect function.
I connect through login.php
Login.php redirects the user to members.php if the password is ok.
My question would be:
----> the mysql class object I instantiated on my login.php scripts exists on my members.php script ? I mean, do I have to create a new mysql object or does the connection remains alive ?
Generally speaking, will an instantiated object on one script exist on other scripts?
Please help....
😕
THANKS IN ADVANCE!!!