Posts Tagged ‘apache’

PHP MySQL Tutorial: Connect to a MySQL Database -HD-

Updated Download Link: fur.ly In this tutorial, you will learn how to connect to a MySQL database using PHP. Besure to SUBSCRIBE because there will be a new tutorial every week. Follow me on Twitter @RiverCityGraphx Like us on on facebook: on.fb.me Suggest tutorials at For project files, help forums, and more check out the website at http For business related inquires contact us at

PHP Tutorial 28 – MySQL Inserting Data (PHP For Beginners)

This tutorial takes a look at how to insert data into a MySQL Table and specify which fields to insert data into. There is no example of using this to insert user-generated data yet because of the 15 minute limit but I will cover that don’t worry. The more experienced viewers will know how to do this already. For more information, check out the website: howtostartprogramming.com

PHP MySQL Tutorial: Connect to a MySQL Database -HD-

Updated Download Link: ow.ly In this tutorial, you will learn how to connect to a MySQL database using PHP. Besure to SUBSCRIBE because there will be a new tutorial every week. Follow me on Twitter @RiverCityGraphx Like us on on facebook: on.fb.me Suggest tutorials at For project files, help forums, and more check out the website at http For business related inquires contact us at

PHP Tutorial 27 – MySQL Creating A Table (PHP For Beginners)

In the previous tutorial we took a first look at MySQL and Phpmyadmin. In this video we will run our first MySQL Query through PHP to create a table inside of our accounts database that we created in part 26. For more information, check out the website: howtostartprogramming.com

VIDEO TUTORIAL PHP & MySQL (Course 01 Installing Apache)

Tutorial PHP & MySQL

PHP Tutorial 25 – Writing To A File (PHP For Beginners)

In the previous tutorial we looked at the file_get_contents function which allowed us to read the contents of a file. This tutorial looks at the file_put_contents function which will allow us to easily put data into a file. We will also look how to overwrite the data and append the data. For more information, check out the website: howtostartprogramming.com

PHP Tutorial 24 – Reading A File (PHP For Beginners)

There are multiple ways to read a file in PHP but the method recommended by PHP.NET is to use the file_get_contents function. It will return the file as a string and then allow you to play around with it. You could use this for a local text file on your machine or even an external HTML page. For more information, check out the website: howtostartprogramming.com

PHP Tutorial 22 – Check If Variable Is Set (PHP For Beginners)

The isset function will allow you to determine if a variable has been set or not. This can be useful when checking if user input has been entered or not. The function will return either a true or false value. For more information, check out the website: howtostartprogramming.com

PHP Tutorial 21 – Find If String Contains a String (PHP For Beginners)

The strpos(String Position) function will allow you to check if one string contains another string and will also determine the first occurrence of that string. This function has been very useful to me when parsing web pages and should prove useful for you too. For more information, check out the website: howtostartprogramming.com

PHP Tutorial 23 – Embedding HTML And PHP (PHP For Beginners)

There are many ways to output a response inside of your HTML and this video will investigate the different methods that you can use. The easiest way is to use single quotes but we can also stop and start our PHP script without causing errors in If Statements or Loops. For more information, check out the website: howtostartprogramming.com