A Flash Developer Resource Site

Search:

Type: Posts; User: Musicman

Page 1 of 5 1 2 3 4

Search: Search took 0.20 seconds.

  1. Replies
    5
    Views
    768

    it might be worth trying with an arbitrary...

    it might be worth trying with an arbitrary website url too, to find out whether it is the hosting company blocking things, or twitter. The url I tried DID return a valid http result, but the result...
  2. Replies
    5
    Views
    768

    Hi, what happens when you add a few test...

    Hi,

    what happens when you add a few test printouts?


    <?
    echo "starting<br>";
    $content = file_get_contents("http://....");
    echo "after reading<br>";
    echo $content;
  3. Replies
    5
    Views
    768

    Hi, the _current_ way of doing things in php...

    Hi,

    the _current_ way of doing things in php would be


    <?
    $content = file_get_contents("http://....");
    echo $content;
    ?>
  4. Replies
    1
    Views
    583

    Hi, you are using "From $email" as header when...

    Hi,

    you are using "From $email" as header when sending to the person. So in practice this would mean that somebody with an address
    like me@hotmail.com would eventually receive a message that can...
  5. Hi, it seems that the author can be reached...

    Hi,

    it seems that the author can be reached via facebook and twitter....
  6. Replies
    6
    Views
    1,465

    Hi, curl is a program that is available from...

    Hi, curl is a program that is available from haxx.se. It is a command line tool that simply grabs something from the server (in this case your xml dataset) and saves it as a file.
    So you can inspect...
  7. Replies
    6
    Views
    1,465

    Hi, to make sure it is not the browser fooling...

    Hi,

    to make sure it is not the browser fooling you, how about trying a different tool to capture the output? I am using curl quite often, and believe it is available for windows too

    BTW: when I...
  8. Hi, I dont believe that javascript orphp are...

    Hi,

    I dont believe that javascript orphp are the ways to go. I think it is worth trying to evaluate whether loading one of those swf into a container could add the features.
    Also, there is...
  9. Hi, I just tried insert into test1 (nam)...

    Hi,

    I just tried


    insert into test1 (nam) values ('John'), ('Mark'), ('Mary');

    I guess it would not like an extra comma after the last set of values, so you should probable code
  10. Replies
    2
    Views
    1,122

    Hi, I do not have a real example for you (and...

    Hi,

    I do not have a real example for you (and it depends on which version flash/actionscript you are using),
    but even this simple project makes sense to build in stages.
    So here is the php stage...
  11. Thread: Learning PHP

    by Musicman
    Replies
    7
    Views
    1,612

    Hi Mushrambo, sorry that I cannot really help....

    Hi Mushrambo,

    sorry that I cannot really help. When I was in your situation, I started with a book (no idea what that was, but probably not in english), the php online manual and a task to solve...
  12. Hi, on the flash side the byte array supports...

    Hi,

    on the flash side the byte array supports zlib compression, so you should probably look for zlib on the java side as well
    If the bytearray is completely compressed, as3 is just
    ...
  13. Hi, in case it does not work (you are telling...

    Hi,

    in case it does not work (you are telling the browser to reload the html/php part, not the flash part), there are three options
    a) modify name of your swf - perhaps add some ?version=47 to...
  14. Replies
    4
    Views
    1,368

    Hi, in order to install something other than a...

    Hi, in order to install something other than a conventional web application on a server, you probably need to run your one box ... could be a virtual one for a cheaper solution.

    Maybe you can find...
  15. Replies
    1
    Views
    849

    Hi, this does not look basically wrong......

    Hi,

    this does not look basically wrong...
    First of all, there is
    $low
    etc. in your php rather than $_REQUEST['low']
    This means you either need to have a very old php version running, or one...
  16. Hi, you should probably double-check that...

    Hi,

    you should probably double-check that $session contains what you expect

    Musicman
  17. Thread: Weather Feed

    by Musicman
    Replies
    2
    Views
    1,091

    Hi, I have fp 11.1 installed, but get an...

    Hi,

    I have fp 11.1 installed, but get an "install flash" page when I try to look at the live version :(

    Musicman
  18. Replies
    5
    Views
    1,790

    Hi, this is a php error message: ...

    Hi,

    this is a php error message:


    <br />
    <font size='1'><table class='xdebug-error' dir='ltr'% 20border='1' cellspacing='0' cellp adding='1'>
    <tr><th align='l eft' bgcolor='#f57900'...
  19. Replies
    5
    Views
    1,790

    Hi, I have checked the php code, and it looks...

    Hi,

    I have checked the php code, and it looks fine. However, I think it is many years ago I had to use session_register('varname');
    Maybe you have more luck with just a sole session_start() near...
  20. Replies
    5
    Views
    1,790

    Hi, where in the flash are you actually...

    Hi,

    where in the flash are you actually talking to the server?

    Musicman
  21. Replies
    2
    Views
    1,020

    Hi, to be absolutely sure they are the same, I...

    Hi,

    to be absolutely sure they are the same, I would probably add another --- after the second variable

    Musicman
  22. Replies
    11
    Views
    2,020

    Hi, the only thing I could suggest without...

    Hi,

    the only thing I could suggest without actually seeing your site is a bit of server trickery: if the site is running on an Apache webserver, and you are allowed to use mod_rewrite, you could...
  23. Hi, you could try to get a list of received...

    Hi,

    you could try to get a list of received variables.
    If you have access to system log file,

    for($_REQUEST as $key => $val) user_error("$key => $val");
    Otherwise, create a file

    $fp =...
  24. Hi, could be something like nonbreakable space...

    Hi,

    could be something like nonbreakable space instead of real space.
    If you do not expect umlaut or accent characters, you could try

    ereg_replace('[\200-\377]', ' ', $mystring)
    to turn every...
  25. Replies
    2
    Views
    964

    Hi, probably just write out that big html file...

    Hi,

    probably just write out that big html file with every date linked to sth like
    cal.php?action=chg&day=17&month=3&year=2012
    You would probably want to setup a database that combines a date...
Results 1 to 25 of 120
Page 1 of 5 1 2 3 4




Click Here to Expand Forum to Full Width


HTML5 Development Center