Search found 5 matches

by javman
Mon Jun 21, 2004 4:31 pm
Forum: PHP - Code
Topic: embedding flash into php
Replies: 4
Views: 615

This is the answer. I must say that I would never have succeeded at this without your help. I see what you have changed. But I have no idea why. I will have to read some more and study this. However this example works and will serve me well for other flash movies that I want to embed in PHP Thank yo...
by javman
Sun Jun 20, 2004 7:54 am
Forum: PHP - Code
Topic: embedding flash into php
Replies: 4
Views: 615

embedding flash into php

When I place a flash object into php it simply will not run. Even if I remove the cookie condition it will not run. I have tried it in an html document and simply with this code below. Nothing. There is not a lot of info about this. Not a thing in my text books. I will continue to look on the Macrom...
by javman
Sat Jun 19, 2004 7:05 pm
Forum: PHP - Code
Topic: [SOLVED] Cookies will not set
Replies: 7
Views: 1292

Many thanks
Actually that is what I did to get it working. but I did not know why it would not work . Your comments have been very helpful.
by javman
Sat Jun 19, 2004 9:34 am
Forum: PHP - Code
Topic: [SOLVED] Cookies will not set
Replies: 7
Views: 1292

That worked --!!thanks However I am still confused. When i used the code alone without any html it works now. But when I use the php code in a PLAIN html page named faith.php it will not set a cookie. This is confusing. And frustrating. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional/...
by javman
Sat Jun 19, 2004 2:19 am
Forum: PHP - Code
Topic: [SOLVED] Cookies will not set
Replies: 7
Views: 1292

Cookies will not set

I have the following code which will not work <?php echo "Hello World"; $string_name = "highspeed"; $string_value ="test"; $expiry_info = time() +40000; setcookie($string_name, $string_value, $expiry_info); ?> the hello world works but it will not set a cookie. If I use...