1 replies
  • OFF TOPIC
  • |
Guys i want to learn Php and MySQL at home hehe..can anyone provide with the link of any website that provides the video tutorials..
  • Profile picture of the author seasoned
    STAY AWAY FROM mysql, until later! Try to learn SQL! MYSQL is basically a superset of a subset of SQL, and a lt of people try to learn MYSQL and develop bad habits from others, etc... One of the reasons SQL has lasted so long is that there is a subset that works almost everywhere.

    You can get away with learning, basic statements:
    SELECT
    UPDATE
    DELETE
    INSERT

    basic commands:
    CREATE TABLE
    TRUNCATE

    basic search and filter clauses:
    WHERE
    HAVING
    DISTINCT
    ORDER BY
    GROUP BY
    HAVING

    basic functions
    AVG
    MAX
    MIN
    SUM
    COUNT

    Other stuff like
    subqueries
    coordinated joins
    aliases

    It isn't that hard to learn.

    For PHP, you could try: PHP Introduction

    Steve
    {{ DiscussionBoard.errors[5678117].message }}

Trending Topics