In my start-script I have a Problem. Local the script is running. On the Server gives me this Error-Message:
lesen.php3 <?php
session_start();
Fatal error: Call to unsupported or undefined function session_start() in ...../lesen.php3 on line 3
What is this?
Thanks for your Help. Kurt
Sessions aren't supported in PHP3. Put the following on a page and run it:
<? echo "Current PHP version: ".phpversion(); ?>
If you are running PHP 3.0, you will need to upgrade.
Jim
Thanks for your help best regards kurt