Recent content by trike97

  1. T

    mysql_query help

    try connecting to the database before you run a query, in other words $sqlQuery1 = null unless you connect to the DB first.
  2. T

    My chess application on X10

    It looks good, but the computer is too easy. Played 3 games, and twice he moved his queen to front row of my pawns, and one game i managed to queen a pawn moving no other pieces except the pawn.
  3. T

    My first wordpress theme

    http://www.feedicons.com/ or google some. I like the colors and the menu but side menu font size could be a bit bigger. The rest of the font is fine.
  4. T

    SQL database error

    // Define database connection constants define('DB_HOST', 'localhost'); define('DB_USER', 'username');//put in username define('DB_PASSWORD', password');//put in password define('DB_NAME', 'databaseName'); //put in DB name //connect to database $dbc =...
  5. T

    PHP: Putting Variable into Hyperlink Text Problem

    <?php session_start(); //if the session vars aren't set, try to set them with a cookie if (!isset($_SESSION['userID'])) { if (isset($_COOKIE['userID']) && isset($_COOKIE['userName'])) { $_SESSION['userID'] = $_COOKIE['userID']...
Top