Search found 10 matches

by jts_01
Sun Dec 25, 2005 4:55 pm
Forum: PHP - Code
Topic: PHP and Flash [SOLVED]
Replies: 25
Views: 1056

You are the master man; it worked! Thanks guys for all your help.
by jts_01
Sun Dec 25, 2005 1:07 pm
Forum: PHP - Code
Topic: PHP and Flash [SOLVED]
Replies: 25
Views: 1056

This is the index page of my frames- <?php session_start(); ?> <HTML> <HEAD> <TITLE>UNDER CONSTRUCTION</TITLE> <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=windows-1251" <meta name="resource-type" content="document"> <meta http-equiv="Conte...
by jts_01
Sun Dec 25, 2005 11:53 am
Forum: PHP - Code
Topic: PHP and Flash [SOLVED]
Replies: 25
Views: 1056

Ok I put it on line one and the error goes away however the function does not work. It just displays the flash as usual.
by jts_01
Sun Dec 25, 2005 11:14 am
Forum: PHP - Code
Topic: PHP and Flash [SOLVED]
Replies: 25
Views: 1056

I have that if you look at the second line.
by jts_01
Sun Dec 25, 2005 1:17 am
Forum: PHP - Code
Topic: PHP and Flash [SOLVED]
Replies: 25
Views: 1056

Sorry to post about this so much but now I getting Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /home/trance/public_html/flashtest.php:9) in /home/trance/public_html/flashtest.php on line 128 Warning: session_start(): Cannot send session cache lim...
by jts_01
Sun Dec 25, 2005 1:16 am
Forum: PHP - Code
Topic: PHP and Flash [SOLVED]
Replies: 25
Views: 1056

Sorry to post about this so much but now I getting Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /home/trance/public_html/flashtest.php:9) in /home/trance/public_html/flashtest.php on line 128 Warning: session_start(): Cannot send session cache lim...
by jts_01
Sat Dec 24, 2005 11:02 pm
Forum: PHP - Code
Topic: PHP and Flash [SOLVED]
Replies: 25
Views: 1056

It doesn't seem to work. After I refresh the browswer it only displays the cougar_1.swf. No erros are displayed nor have I found any in the log. This is the code I have now- <?php if ((isset($_SESSION['new_user'])) && ($_SESSION['visited'] === true)) { // The user has seen the initial banner...
by jts_01
Sat Dec 24, 2005 3:26 pm
Forum: PHP - Code
Topic: PHP and Flash [SOLVED]
Replies: 25
Views: 1056

Another solution could be using a session. PHP: <?php if ($_SESSION['new_user'] == true) { // The user has seen the initial banner. Don't show it again. SHOW BANNER } else { // The user hasn't seen the initial banner. Show it. SHOW INITIAL BANNER WITH INTRO OR WHATEVER // Set the session value so t...
by jts_01
Fri Dec 23, 2005 11:11 pm
Forum: PHP - Code
Topic: PHP and Flash [SOLVED]
Replies: 25
Views: 1056

I believe it's starting over or stored in the users cache.
by jts_01
Fri Dec 23, 2005 10:28 pm
Forum: PHP - Code
Topic: PHP and Flash [SOLVED]
Replies: 25
Views: 1056

PHP and Flash [SOLVED]

I have a problem with a flash banner on top of my site that keeps reloading at every new page. So I made the page into two parts using php includes one part the header (where the flash is) and the other part into the page body. However, the flash still reloads. Any insight in how to keep the header ...