Results 1 to 4 of 4

Thread: Php question

  1. #1
    Join Date
    Sep 2005
    Location
    East London
    Posts
    3,028
    Tokens
    0

    Latest Awards:

    Default Php question

    PHP Code:
    $blah .= "lol<br>";
    $blah .= "beans";
    echo 
    $blah
    I never heard of or used .= until today....

    Does it just add to the array so that when you echo the array for me it would display

    lol
    beans

  2. #2
    Join Date
    May 2005
    Location
    San Francisco, CA
    Posts
    7,160
    Tokens
    2,331

    Latest Awards:

    Default

    All it does is instead of setting a new variable it just adds the new string to the end of the existing variable.

  3. #3
    Join Date
    Sep 2005
    Location
    East London
    Posts
    3,028
    Tokens
    0

    Latest Awards:

    Default

    Thats pretty wkd then

  4. #4
    Join Date
    Nov 2007
    Posts
    1,253
    Tokens
    150

    Latest Awards:

    Default

    Yea, its a nice little thing to know. And simple.


    www.fragme.co = a project.

Posting Permissions

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