Is there a way to put something like this:
before my doctype without it affecting my links? For example, I have a horizontal menu where I have a link that says "Home", but using the above code, it extends my actual href parameters as http://domain.com?PHPsessionID12323124, then upon a refresh it doesn't.Code:<?php session_start(); include 'connection/connection.php'; if (!session_is_registered("counted")){ mysql_query("UPDATE simplecount SET count=(count + 1) WHERE count_id=1"); session_register("counted"); } ?>
The reason is because this needs to be the first code that is sent to the browser, otherwise, it throws errors all over the place.
Suggestions?





Bookmarks