PHP Tutorial 29 – MySQL Reading Data (PHP For Beginners)




This video explores the SELECT statement when working with MySQL queries in PHP. We take two mock entries from our table and then display two fields in …

Original source


47 responses to “PHP Tutorial 29 – MySQL Reading Data (PHP For Beginners)”

  1. Thanks for your work. I have learned a lot and know how much work training can be. You have gotten me started and that is what I usually need. Good luck with your present endeavours and thanks again.

  2. Just want to say thank you for the wealth of information you have given us through these tutorials. I now have the basic building blocks for the backend of web development. Good day and well wishes for whatever you do in life.

  3. Great videos but it's really a shame that you didn't finished the tutorials for the beginners. No offense but before you start doing something similar, calculate your time and make a decission if you can or cannot finish a project. Don't take me wrong, i appreciate your work but not as much as if you have finished it. It's not only your time, but ours also. Be responsible. Then again, thank you, anyway.

  4. How to add value of php variable into mysql database?
    My code is 
    $name="ABC";
    $age=15;
    $conn=mysql_connect(…..) or die(mysql_error());
    mysql_select_db("info",$conn);
    $sql='INSERT INTO ppl (Name,Age) VALUES('.$name.','.$age.')';
    mysql_query($sql,$conn);

    IT DOES NOT DISPLAYS ANY ERROR
    however there is no entry made into the required table
    How should i do it?

Leave a Reply