Jump to content

monkeymax

New Members
  • Posts

    2
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

monkeymax's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. I've got a header page (header.php) that I'd like to include with every page. The header.php looks like this: [code]<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://ww.w3.org/1999/xhtml"> <head> <title>Monkeymax</title> <link rel="stylesheet" type="text/css" href="../styles/main.css" /> <link rel="stylesheet" type="text/css" href="../styles/sIFR-screen.css" /> </head> <body> <div id="layout">     <div id="header">         <img src="../images/logo.gif" width="140" height="50" alt="Logo" class="logo" />     </div>     <div id="container">[/code] I also have a login validation script that I run after the header has been included. This script checks to see if the user is logged in, and if they are not redirects them to the index page. If I don't include my header, it works fine, but if I do I get: [!--quoteo--][div class=\'quotetop\']QUOTE[/div][div class=\'quotemain\'][!--quotec--]Warning: Cannot modify header information - headers already sent by (output started at C:\Apache2\htdocs\monkeymax\web\includes\header.php:8) in [b]C:\Apache2\htdocs\monkeymax\web\includes\secure.inc.php on line 9[/b][/quote] I've become aware that this error is generally caused by whitespace before or after <?php and ?>. How can I include my header without getting this error? Any help would be appreciated.
  2. I've been unsucessfully trying to get this to work for the last hour so I thought I would turn to the experts! The situation is that I have a page of matches that I would like the user to select from. Say the page is called "matches.php". The table would look like: Match 1 Dog vs Cat Match 2 Praying Mantis vs Butterfly .... The match players are links, and the match number and player id are passed back to the page, so Dog would be linked as: <a href="matches.php?match=1&amp;player="Dog">Dog</a> Now my problem is when the page is reloaded, I want these details to be stored in an array. I thought it would be as simple as: if(!isset($_GET['match'])){ $match_array=array(); } else{ $match_array[$_GET['match']] = $GET['player']; } Which would be working perfectly [b]except[/b] for the fact that the array gets reloaded everytime I load the page, so it only ever has one entry. I would like it to store all previous match data. I don't have much experience with static and global variables and was hoping someone would be able to suggeset a solution for this, Thanks!
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.