Ask a Question related to PHP Development, Design and Development.

  1. #1

    Default newbie questions...

    Hei!

    Im familiar with visual C++ but not with PHP...

    so my questions follow...
    are there any good PHP compilers...
    if ya wanna make a 'good' homepage is PHP right language for image
    animations and small games...
    are there good functions for graphics in PHP...
    how does the computer reads PHP code where does it start reading is
    there some MAIN function or what...
    so many other questions if there is somethin U think I should know
    please write to me...

    Yours : JariTapio / Helsinki Finnland



    JariTapio Guest

  2. Similar Questions and Discussions

    1. Newbie questions
      I am a new user of Dreamweaver MX, and have very limited knowledge of what I need to use it to create HTML "popup" emails -- can someone give me an...
    2. very newbie questions about CF
      :o Apologies in advance but need real user advice here... can I use the ColdFusion functionality built into Dreamweaver MX 2004 to build a...
    3. Two newbie questions
      Hi, I'm just learning InDesign CS after using PageMaker for more than 10 years (I need to be fluent in both for work purposes). I have two questions...
    4. AIX Newbie Questions
      I have recently purchased a RS/6000 43P-150 workstation for the purpose of learning AIX 5L.... Q1) Do many use an RS/6000 workstation as their...
    5. (Newbie) AIX Questions
      Just started caring for RS/6000 running AIX 4.3. Planning on doing upgrade to 5.2 but have a couple of questions. 1. Volume group rootvg is...
  3. #2

    Default Re: newbie questions...

    JariTapio wrote:
    > so my questions follow...
    > are there any good PHP compilers...
    [url]http://www.php.net/[/url]
    PHP isn't a compiled langauge.
    > if ya wanna make a 'good' homepage is PHP right language for image
    > animations and small games...
    I would think flash and actionscript is more what you are seeking. PHP
    gives you the 'power' to dynamically create content (most likely html)
    on the fly. If
    > are there good functions for graphics in PHP...
    You have some:
    [url]http://no2.php.net/image/[/url]

    but i assume it's not actually what you are looking for. still, you've
    misunderstood web as a development target.
    > how does the computer reads PHP code where does it start reading is
    > there some MAIN function or what...
    starts from the first <?php and works it day down. ;)
    > so many other questions if there is somethin U think I should know
    > please write to me...
    You could please yourself by reading the manual. ;) everything else is
    just wasting everybodys time.

    --
    Geir Eivind Mork - Bodoe / Norway

    Geir Eivind Mork Guest

  4. #3

    Default Re: newbie questions...

    JariTapio wrote:
    > so many other questions if there is somethin U think I should know
    > please write to me...
    RTFM

    Find a tutorial... there tons out there... thats how I got hooked...


    -Eric Kincl
    Eric Kincl Guest

  5. #4

    Default Re: newbie questions...

    JariTapio wrote:
    > Hei!
    >
    > Im familiar with visual C++ but not with PHP...
    >
    > so my questions follow...
    > are there any good PHP compilers...
    > if ya wanna make a 'good' homepage is PHP right language for image
    > animations and small games...
    > are there good functions for graphics in PHP...
    > how does the computer reads PHP code where does it start reading is
    > there some MAIN function or what...
    > so many other questions if there is somethin U think I should know
    > please write to me...
    >
    > Yours : JariTapio / Helsinki Finnland
    >
    >
    >
    This is gonna hurt :)

    You cannot interact directly with PHP in your web browser because PHP is
    on the web-server only. This means that all the browser's interactions
    with PHP must go over HTTP (using a HTTP GET or HTTP POST request). This
    is a pain because HTTP is a connectionless protocol. That is, no
    connection is established to transfer data -- either side just sends a
    packet (HTML + HTTP headers) and "hopes" that the other side got it. For
    instance, if a browser sends a request, there is no connection, so it
    has to wait for a response and fall-back after a timeout in the event
    the request was not recieved or the response did not return.
    Connectionless interactions don't allow sessions to "persist". Web
    programming technologies have to come up with nasty work-arounds to
    emulate persistance -- and all of these are based on timeouts.
    All of these issues are not specific to any particular web server
    language (Java Servlets, ASP.NET, Cold Fusion or PHP), they are issues
    of the web and HTTP.

    So there goes your idea about writing interactive games in PHP. If you
    do, they will incur the request/response latency of HTTP, this will
    limit your options severely.

    If you want stuff that runs in your browser, then Flash, Java Applets,
    MS Active-X controls are the way to do it. Blender has specialised
    technology (browser plugin) for creating games that run in a web page.

    If you haven't heard of Blender, be prepared to be seriously impressed.
    [url]http://www.blender3d.com/[/url]

    Terence Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139