+ Reply to Thread
Results 1 to 5 of 5

Thread: cegonsoft reviews | Learn PHP Examples

  1. #1

    Default cegonsoft reviews | Learn PHP Examples

    PHP Examples

    PHP scripts can be embedded in HTML:

    A simple Hello World example:- hello.php:

    <html>
    <head>
    <title>Hello world</title>
    </head>
    <body>
    <h1><?php echo("Hello world"); ?></h1>
    </body>
    <html>

    Another version of the “Hello World” program is hello2.php which uses a variable string:

    <?php $outputString = "Hello world"; ?>
    <html>
    <head>
    <title><?php echo($outputString); ?>
    </title>
    </head>
    <body>
    <h1><?php echo($outputString); ?></h1>
    </body>
    </html>

    Example of php while… loop..

    <html>
    <body>
    <?php $i=1;
    while($i<=10)
    {
    echo "The number is " . $i . "<br />";
    $i++;
    }
    ?>
    </body>
    </html>

    Visit: Cegonsoft

  2. #2

    Default

    PHP is probably the easiest to learn mainstream language available right now. This comes with a price though; poor design and vulnerabilities are to be found on a huge amount of php projects, just because PHP allows you to do so, and because many of the people who are using the language are not (or should not call them selves) professional programmers.

    A few of the most important things:

    Make sure you have error_reporting to atleast E_NOTICE during development, or even better to the suggested E_STRICT (for PHP5 and above). PHP is very good in warning you about possible bugs of vulnerabilities in your code (check this link: php.net/manual/en/errorfunc.configuration.php#ini.error-reporting) Be careful though: as nice and helpful as it may be to use error reporting during development, make sure NO errors are displayed on the actuall application while live; it can give the person who is currently using it allot of info about your vulnerabilities! So, on the live project, make sure error_reporting is disabled.

    Exception handling is a powerful technique to protect your program flow and get running errors php.net/manual/en/language.exceptions.php

    cegonsoft

  3. #3

    Default

    Hi,

    PHP has become a major Scripting Language in the server side scripting market.
    PHP is robust, easy to use, and scalable for dynamic Web applications.

    Having nice reviewsm, Cegonsoft is the best Training Centre for PHP & MySQL.
    They provide complete PHP & MySQL training in no time really, just 10 days.
    There are a lot of IT professionals putting their best efforts which made this possible.


    cegonsoft reviews
    Last edited by basuli80; 10-15-2011 at 09:38 AM.

  4. #4
    Ruby Star member nobita_deptrai is on a distinguished road
    Join Date
    Jun 2011
    Posts
    458

    Default

    PHP/MySQL For Beginners and Intermediate PHP Programmers


    Have you imagined building impressive database-driven websites on your own but don’t know where to start?
    “Build Your Own Database Driven Website Using PHP & MySQL” is the only PHP and MySQL programming book, which will help you teach PHP and MySQL from scratch like no other PHP book.
    It is designed to take you through step-by-step coding process of building complex database driven websites. After going through this book, you will not need to rely on just HTML when developing your websites or applications.
    This book on PHP will take you from a complete newbie in PHP to an absolute PHP pro in 30 days or less. If you’re already using PHP but like to expand your limited knowledge in PHP further and learn MySQL, this book is for you.
    The book is filled with coding examples and exercise at the end of each chapter to help you practice and learn PHP programming. Moreover, in chapter six you will develop a content management system from scratch using lessons you have learned in the previous chapters.
    Last edited by nobita_deptrai; 10-17-2011 at 07:30 AM.
    BDS Real Estate Company
    Go to my website rao vat ban nha to learn about real estate in Vietnam: Home sales , Apartment for sale, Feng Shui ...

  5. #5

    Default cegonsoft reviews | ieee projects programs for MS Freshers in Cegonsoft

    Benefits of real time projects

    Involving students in real time projects improves the ability of Teamwork, decision making, reliability testing, performance testing, usability.
    Activities in real time projects:
    Troubleshooting of real time project
    Software Testing
    Documentation
    Customer Interaction
    Database Design
    Coding with standards used

+ Reply to Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts