newbie php question_
i have no idea what im doing. its a simple thing im sure. my partner in my department is really busy so im trying to figure this out myself.
in my flash movie its setting a variable. that variable determines what colors are used. then you click a button (in flash) it pops up a window and based on the flash variable sets the bg color of the html pop up. (btw, this is for like a portfolio section of a website).
once that popup is up you can click on next and previous links to view the rest of the pages.
coming from flash it works fine.
but when you use the text links to view the pages it loses that variable that the first page got from flash
so how do i pass that variable through the text linnks onto the next or previous page?
Code:
<?php
//get page variables
import_request_variables("g", "color_");
$curColor = $color_illNumb;
$backColor[0] = '#002135';
$backColor[1] = '#3F3C3A';
$backColor[2] = '#5D2306';
$backColor[3] = '#2E2E1F';
$backColor[4] = '#363636';
?>
<?php
echo ('<body bgcolor="' . $backColor[($curColor)] . '" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">');
?>
illNumb is the variable that is set in flash and passed to this page. how do i get that var to the next pages using the links?
thank you for any help. it is much appreciated.