Home
Pages
  • About
  • Users
  • Register

  • Log in
    Latest WSD Tutorials
                 

    News

    Quick Tip - How to connect to MySQL with PHP

    Posted April 14, 2008 By BryanFiled under: Articles, Programing, Quick Tips, Tutorials, Web, Web Dev Tutorials, news

    This is a Quick Tip on how to connect to MySQL with PHP. We have all done it from time to time, but sometimes we forget just how to connect to those pesky MySQL databases directly using PHP. So here’s how it’s done:


    <?php
    function open( ){$db = mysql_connect( ‘localhost’, ‘root’, ‘password’ );
    } ?>

    Here we have custom a function “open”. Followed by the mysql_connect function which we will supply the url, username, and password. It’s pretty simple to do in PHP. Thanks for reading …

    Adobe’s AIR gets rich applications right

    Posted April 13, 2008 By BryanFiled under: Design, Opinion, Programing, Software, Technology, Web, news

    The modern browser makes an appealing client for web-based applications, but even browsers like Safari 3.1 that incorporate features of HTML 5 and CSS 3 have limitations that keep them from competing with native .Net and Java desktop applications. In those areas where a browser falls short, such as …

    read more | digg story

    Top CSS tips and hacks

    Posted April 12, 2008 By BryanFiled under: Programing, Tutorials, Web, news

    Most used CSS tricks

    read more | digg story

    Simple Tricks for More Usable Forms

    Posted By BryanFiled under: Programing, Tutorials, Web, news

    Web developers loathe the task of building forms almost as much as users loathe having to fill them in. Some smart JavaScript and intelligent CSS can go a long way! In this article, I’ll introduce a number of simple tricks for improving the usability of forms, and hopefully inspire you to improve on them and create your own.

    read more | digg story

    A Simple Text Templater in C++

    Posted By BryanFiled under: Programing, news

    Sometimes you just need a small, simple text templater. This is it.

    read more | digg story