Search found 5 matches
- 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...
- 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...
- Sat Jun 19, 2004 7:05 pm
- Forum: PHP - Code
- Topic: [SOLVED] Cookies will not set
- Replies: 7
- Views: 1292
- Sat Jun 19, 2004 9:34 am
- Forum: PHP - Code
- Topic: [SOLVED] Cookies will not set
- Replies: 7
- Views: 1292
- 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...