PHP Login – Step 1

Use PHP to login to a MySQL database. … CIS 295 195 web development php mysql

Tags: , , , , , ,

Share and Enjoy: These icons link to social bookmarking sites where readers can share and discover new web pages.
  • Digg
  • del.icio.us
  • StumbleUpon
  • Reddit
  • Webnews
  • MisterWong
  • Y!GG
  • Ask
  • Blogosphere News
  • Facebook
  • Google Bookmarks
  • Squidoo
  • Technorati
  • YahooMyWeb

Tags: , , , , , ,

24 Responses to “PHP Login – Step 1”

  1. lostvoices82 says:

    i had that problem too BUT i found

    ‘members’
    “members” is incorrect
    yo have to you `members`
    using the key next to 1 the ~ Key not ‘”"‘ key

  2. Laoch111 says:

    Hi rrphillips,
    your videos are excellent
    10/10

  3. nice6guy says:

    if i typ in that insert into members thing then there is a this

    #1054 – Unknown column ‘john’ in ‘field list’

    can u help me?

  4. rapisreality93 says:

    where did he get his domain from

  5. tristan123452000 says:

    how did you install the phpmyadmin, i downloaded it, but i don’t have any idea to install it?

  6. tuckbloor says:

    this is good tutorial but the mysql is a differwnt version of mysql than what i am using so if you are having problem’s with it then as lostvoices82 points out you need to change ‘members’ to `members` this is the key to the left of the 1 key ““` great video 5 out of 5 for me thanks

  7. psphacker159 says:

    I JUST GET AN ERROR! HELP!

  8. owenoj says:

    use WampServer2 its a program what has phpmyadmin installed all you do is left click on the icon in the taskbar and click on phpmyadmin and it will direct you to the web page. If it doesnt work, then you havnt set it up right.

  9. timboiscool says:

    what is the link?

  10. xboxguy999 says:

    where do you download mtPHPadmin?? i know where to get it but the download wont start

  11. krisis32 says:

    In newest version of PHPMYADMIN is getting error …
    Whne u edit that SQL get this –

    #1064 – You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ‘:’ at line 1

    this is my line –

    INSERT INTO `members` VALUES (1,’john’,'1234′):

  12. FavoriteDesigns says:

    You dont, you have to have a webhost server.

  13. krisis32 says:

    ALL OK.
    i did put : at end not ; !

  14. fibertech9 says:

    thanks for making this tutorial its always nice to here a human teach this stuff

  15. ViscyAndStille18 says:

    i got this problem ” MySQL returnerede:

    #1136 – Column count doesn’t match value count at row 1 “

  16. raffademello says:

    #1064 – You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ‘:’ at line 1

    Yeah ! type `members` and the rest use single quotation marks

    no erros like this !

  17. Maltebyte says:

    INSERT INTO `members`
    VALUES ( 1. ‘john’. ‘1234′ ) ; doesnt work 4 me some1 help please

  18. coki218 says:

    How to run phpmyAdmin ??? please speak …. i’am finished login ….

  19. Lilhjatt says:

    I downlaoded Phpmyadmin and I don’t know how to start it PLZ HELP ME!!!

  20. 007drak007 says:

    you write a dot
    no no no dot
    coma!!!!

  21. Maltebyte says:

    download wampserver there u can click in the bottom right on the icon and open phpmyadmin

  22. Timzy921 says:

    its INSERT INTO `members` (rowone,rowtwo,rowthree) VALUES (’1′,’john’,'1234) //Call the rows first then the values

  23. KDMW1234 says:

    try it like this:

    $username = “john”; /* you can use a postformular for the username and password */
    $password = “1234″;

    mysql_query(”INSERT INTO `members` (`username`, `password`) VALUES (’$username’, ‘$password’)”); /* the problem ist you havn’t the rows in the coloums, and id you don’t need if you use A_I in mysql

    echo “ready!”;

  24. Namezzzzzzz says:

    Dont use this SQL command at 1:52 !
    ->
    instead of klicking on ‘SQL’ klick on ‘insert’ there you can add your name etc. manuely

Leave a Reply