PSD to HTML conversion PSD to HTML conversion PSD2HTML.com with over 300 professionals takes the designs to HTML and beyond

Subscribe to The Thread

  1. Mark Cole

    Seriously? This is terrible lol.

  2. lmao!!!!!!!!!!!!!!!!!!!!!!!!! this is funny

  3. lollllll

    so, an attempt to correct this users coding..

    input:

    $array[0] = "CSS";
    $array[1] = "HTML";
    $array[2] = "PHP";
    $array[3] = "JavaScript";
    
    echo '';
    print_r ($array);
    echo '';

    output:

    Array
    (
        [0] => CSS
        [1] => HTML
        [2] => PHP
        [3] => JavaScript
    )
  4. haha this is too basic for a snippet

  5. Or this:


    echo '<pre>',print_r($array,1),'<pre>';

    • Gringer

      For beginners:

      The reason we use a comma instead of a period/dot between the ‘pre’ and the print_r() is because print_r() does an echo from itself.

      If you would use a dot instead then it PHP will echo print_r() and AFTER that a pre and a /pre.


      Gringer
      PS:

      As we can read here:
      http://nl3.php.net/manual/function.print-r.php

      print_r() takes a second argument to return instead of echo:

      echo '<pre>' . print_r($array,true) . '</pre>';

      Note: We use dots instead of comma’s, and give print_r() an extra ‘true’ (= return).

      Not as short, but just to explain to beginners how the spoon fits in the fork xD

  6. superman

    I’m sorry to say that not everybody is experienced who come here.It is a wonderful resource for the all levels of coder. Keep it up Chris.. Thanks

  7. Gringer. I agree with you. Thanks.

  8. Waterman

    You can as well use the foreach statement to get the content of an array out.. you use that when you need to perform something to every single one of the array element…

    $someArr = array(1,2,3,4,5…)
    foreach ($someArr as $newVar){
    $newVar*=9;
    //whatever you need to do to array members
    echo $newVar;
    }

Speak, my friend

At this moment, you have an awesome opportunity* to be the person your mother always wanted you to be: kind, helpful, and smart. Do that, and we'll give you a big ol' gold star for the day (literally).

Posting tips:
  • You can use basic HTML
  • When posting code, please turn all
    < characters into &lt;
  • If the code is multi-line, use
    <pre><code></code></pre>
Thank you,
~ The Management ~