Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Forum: Plugins
    In reply to: My Link Plugin Problems
    Thread Starter dwbaylor

    (@dwbaylor)

    chirp..chirp…chirp

    Anybody out there??

    The code shown as <?php session_start(); ?> does not work because the use of “?>” tells the browser to to quit looking for more PHP code.

    By using “<?php session_start();” the browser will just accept it as another line of PHP code.

    Also, “<?php” may already be present, in which case you just need to add “session_start();” somewhere after that. The “<?php” tells the broswer where to start looking for PHP code.

    Hope that helps.

Viewing 2 replies - 1 through 2 (of 2 total)