Recent content by Chris Gates

  1. C

    Now that HTML v5 is out, will Flash become history?

    HTML5 isn't a standard yet, so... no. Flash will remain relevant until HTML5 is actually a specification and perhaps even beyond that... EDIT>>> By the way, the projected date that HTML5 will become a specification is sometime in 2020. Don't hold your breath. =)
  2. C

    Now that HTML v5 is out, will Flash become history?

    HTML5 isn't a standard yet, so... no. Flash will remain relevant until HTML5 is actually a specification and perhaps even beyond that... EDIT>>> By the way, the projected date that HTML5 will become a specification is sometime in 2020. Don't hold your breath. =)
  3. C

    What is wrong with my php code ? Syntax error unexpected T_Variable?

    The line before it is missing a semi-colon... $searchterm = $_POST['searchterm'] should be $searchterm = $_POST['searchterm'];
  4. C

    Is this possible <?php echo $row["payment"];?> to 2,000.00?

    Read up on sprintf and number_format: http://www.php.net/manual/en/function.sprintf.php http://www.php.net/manual/en/function.number-format.php sprintf will help you format your output to currency, and number_format will help you add the comma to group thousands. Use these two functions...
  5. C

    HTML: Is the "type" attribute REALLY necessary?

    I've been programming and developing web pages for quite some time. However, I never fully understood the purpose of needing to specify a content-type for the HTML document (via the meta tag), in addition to the "type" attribute on tags like <link> and <script>. Examples: <meta...
Back
Top