I need to populate a form when it appears the first time using HTML and PHP. Mostly trying <body onLoad and session variables. Nothing works.
function findData(){
$SessionClient = $HTTP_SESSION_VARS["SessionClient"];
}
...
<body onLoad = <?php echo "findData()" ?>
A previous PHP had
<?php
session_start();
session_register("SessionClient");
...
I've been at this for days and am obviously making a mistake somewhere.
Thank you in advance.