Recent content by Web Programmer

  1. W

    Headers and client mismatched PHP?

    This isnt a problem with the code, but with the PHP installation/conifguration. Google "Headers and client library minor version mismatch" and you will find forum threads with possible solutions.
  2. W

    Headers and client mismatched PHP?

    This isnt a problem with the code, but with the PHP installation/conifguration. Google "Headers and client library minor version mismatch" and you will find forum threads with possible solutions.
  3. W

    php and mysql problem?

    Your problem is here: $comment = ($_Post["comment"]); it should be $comment = ($_POST["comment"]);
  4. W

    php and mysql problem?

    Your problem is here: $comment = ($_Post["comment"]); it should be $comment = ($_POST["comment"]);
  5. W

    php and mysql problem?

    Your problem is here: $comment = ($_Post["comment"]); it should be $comment = ($_POST["comment"]);
  6. W

    how do i make a website linked with a databse using php apache and mysql?

    I agree with Joel, use wordpress, or another CMS like Joomla, Drupal, depending on what your website requirements will be. If you dont know how to even connect to the database, writing code to build a site will be extremely challenging.
Back
Top