Search results

  1. 1

    Any tips on writing good and clean HTML code

    Write your HTML code as you would normally without making it neat, then you can copy and paste what you have coded into this website (http://tools.arantius.com/tabifier) it will automatically make it look "pretty", and neat for you no work involved.
  2. 1

    Uppercase Words

    <?php $text = array( 'hd', 'pdf', 'dvd' ); //set array map $output = array_map('strtoupper', $text); ?>
  3. 1

    Form send function

    You should really be using if(isset($_POST['form_id']) && ($_POST['form_id'] == "505287")
Back
Top