1. New Member

    Date: 10/27/04     Keywords: web

    Aloha to the new member enginsite,
    To all I haven't had much time to post any new code in 2 weeks, sorry for all of you who read this and haven't had an update.
    I will work on something here in a day or two. Probably something concerning my newest project.
    web based store transaction system, that also can be an online store, but is used at the checkout line in a mall :).
    Very spiffy stuff. Gonna have lots o fun with this.
    I will post code here and there about it, and puzzles, challenges.
    I've always liked nehe.gamedev.net and zend.com's coding challenges, they are the best. I want people to join this community first, and get input from users and such before that takes off.
    back to work,
    -=Levi=-

    Source: http://community.livejournal.com/php_elite/597.html

  2. New Member

    Date: 10/26/04     Keywords: web

    Aloha to the new member enginsite,
    To all I haven't had much time to post any new code in 2 weeks, sorry for all of you who read this and haven't had an update.
    I will work on something here in a day or two. Probably something concerning my newest project.
    web based store transaction system, that also can be an online store, but is used at the checkout line in a mall :).
    Very spiffy stuff. Gonna have lots o fun with this.
    I will post code here and there about it, and puzzles, challenges.
    I've always liked nehe.gamedev.net and zend.com's coding challenges, they are the best. I want people to join this community first, and get input from users and such before that takes off.
    back to work,
    -=Levi=-

    Source: http://php-elite.livejournal.com/597.html

  3. New Member

    Date: 10/26/04     Keywords: web

    Aloha to the new member enginsite,
    To all I haven't had much time to post any new code in 2 weeks, sorry for all of you who read this and haven't had an update.
    I will work on something here in a day or two. Probably something concerning my newest project.
    web based store transaction system, that also can be an online store, but is used at the checkout line in a mall :).
    Very spiffy stuff. Gonna have lots o fun with this.
    I will post code here and there about it, and puzzles, challenges.
    I've always liked nehe.gamedev.net and zend.com's coding challenges, they are the best. I want people to join this community first, and get input from users and such before that takes off.
    back to work,
    -=Levi=-

    Source: https://php-elite.livejournal.com/597.html

  4. Programming Goodness

    Date: 10/15/04     Keywords: php, mysql, database, sql, java

    I was lookin around and found this tonight. Very much kewlness, I am hopeing to join in on the fun in the development community so I can add in my ideas to make PHP even better.
    This is a little bit of information I picked up on Creating Custom Exceptions and sending data to the parent class from a function in a subclass. Very spiffy.

    query("SELECT NOW()");
    var_dump($result->fetch_row());
    }
    catch(ConnectException $exception) {
    echo "Connection Error\n";
    var_dump($exception->getMessage());
    }
    catch(QueryException $exception) {
    echo "Query Error\n";
    var_dump($exception->getMessage());
    }
    /* Handle exceptions that we weren't expecting */
    catch(Exception $exception) {
    echo "Who was that masked exception?\n";
    var_dump($exception->getMessage());
    }

    $result->close();
    $my->close();

    ?>

    very spiffy, and I will be posting something using the new MySQLi class. Maybe a whole class system for the generation of graphics pulled from a database. Possibly attach that to a javascript paint proggy, or even better a flash paint proggy..... hmmm the posibilities are endless, but i have to get back to my money making... Gotta love it, but it would be so much more fun if i had a project that really challenged my knowledge and abilities, but well get to that someday.
    -=Levi=-

    Source: http://www.livejournal.com/community/php_elite/504.html

  5. Programming Goodness

    Date: 10/15/04     Keywords: php, mysql, database, sql, java

    I was lookin around and found this tonight. Very much kewlness, I am hopeing to join in on the fun in the development community so I can add in my ideas to make PHP even better.
    This is a little bit of information I picked up on Creating Custom Exceptions and sending data to the parent class from a function in a subclass. Very spiffy.

    query("SELECT NOW()");
    var_dump($result->fetch_row());
    }
    catch(ConnectException $exception) {
    echo "Connection Error\n";
    var_dump($exception->getMessage());
    }
    catch(QueryException $exception) {
    echo "Query Error\n";
    var_dump($exception->getMessage());
    }
    /* Handle exceptions that we weren't expecting */
    catch(Exception $exception) {
    echo "Who was that masked exception?\n";
    var_dump($exception->getMessage());
    }

    $result->close();
    $my->close();

    ?>

    very spiffy, and I will be posting something using the new MySQLi class. Maybe a whole class system for the generation of graphics pulled from a database. Possibly attach that to a javascript paint proggy, or even better a flash paint proggy..... hmmm the posibilities are endless, but i have to get back to my money making... Gotta love it, but it would be so much more fun if i had a project that really challenged my knowledge and abilities, but well get to that someday.
    -=Levi=-

    Source: http://community.livejournal.com/php_elite/504.html

  6. Programming Goodness

    Date: 10/15/04     Keywords: php, mysql, database, sql, java

    I was lookin around and found this tonight. Very much kewlness, I am hopeing to join in on the fun in the development community so I can add in my ideas to make PHP even better.
    This is a little bit of information I picked up on Creating Custom Exceptions and sending data to the parent class from a function in a subclass. Very spiffy.

    query("SELECT NOW()");
    var_dump($result->fetch_row());
    }
    catch(ConnectException $exception) {
    echo "Connection Error\n";
    var_dump($exception->getMessage());
    }
    catch(QueryException $exception) {
    echo "Query Error\n";
    var_dump($exception->getMessage());
    }
    /* Handle exceptions that we weren't expecting */
    catch(Exception $exception) {
    echo "Who was that masked exception?\n";
    var_dump($exception->getMessage());
    }

    $result->close();
    $my->close();

    ?>

    very spiffy, and I will be posting something using the new MySQLi class. Maybe a whole class system for the generation of graphics pulled from a database. Possibly attach that to a javascript paint proggy, or even better a flash paint proggy..... hmmm the posibilities are endless, but i have to get back to my money making... Gotta love it, but it would be so much more fun if i had a project that really challenged my knowledge and abilities, but well get to that someday.
    -=Levi=-

    Source: http://php-elite.livejournal.com/504.html

  7. Programming Goodness

    Date: 10/15/04     Keywords: php, mysql, database, sql, java

    I was lookin around and found this tonight. Very much kewlness, I am hopeing to join in on the fun in the development community so I can add in my ideas to make PHP even better.
    This is a little bit of information I picked up on Creating Custom Exceptions and sending data to the parent class from a function in a subclass. Very spiffy.

    query("SELECT NOW()");
    var_dump($result->fetch_row());
    }
    catch(ConnectException $exception) {
    echo "Connection Error\n";
    var_dump($exception->getMessage());
    }
    catch(QueryException $exception) {
    echo "Query Error\n";
    var_dump($exception->getMessage());
    }
    /* Handle exceptions that we weren't expecting */
    catch(Exception $exception) {
    echo "Who was that masked exception?\n";
    var_dump($exception->getMessage());
    }

    $result->close();
    $my->close();

    ?>

    very spiffy, and I will be posting something using the new MySQLi class. Maybe a whole class system for the generation of graphics pulled from a database. Possibly attach that to a javascript paint proggy, or even better a flash paint proggy..... hmmm the posibilities are endless, but i have to get back to my money making... Gotta love it, but it would be so much more fun if i had a project that really challenged my knowledge and abilities, but well get to that someday.
    -=Levi=-

    Source: https://php-elite.livejournal.com/504.html

Previous page  ||  


antivirus | apache | asp | blogging | browser | bugtracking | cms | crm | css | database | ebay | ecommerce | google | hosting | html | java | jsp | linux | microsoft | mysql | offshore | offshoring | oscommerce | php | postgresql | programming | rss | security | seo | shopping | software | spam | spyware | sql | technology | templates | tracker | virus | web | xml | yahoo | home