4. Establish htaccess and php.ini for apache web site server configuration tutorial

Lesson Code: http://www.developphp.com/video/PHP/Establish-htaccess-and-phpini-for-apache-web-site-server-configuration Establish your .htaccess file and learn to prevent directory file listing as well as specify a more user friendly 404 error page through htaccess. Request your php.ini file to adjust your PHP configuration settings on your apache server. The PHP configuration file can be made by going to your hosting control panel […]

Read More

JavaScript Console Log Tutorial Chrome Firefox IE Browsers

Learn to use and read output from the console.log() method in JavaScript. Handy for reading values during application development, helpful for debugging, seeing script errors and more. var mystring = “hello world”; console.log( mystring ); Google Chrome – Ctrl + Shift + J Firefox – Ctrl + Shift + K IE – F12 Key then […]

Read More

PHP PDO Prepared Statements Tutorial

Lesson Code: http://www.developphp.com/video/PHP/PDO-Prepared-Statements-PHP-Tutorial Learn to create PDO Prepared Statements and quickly discover its key benefits. In the very next video tutorial, you can learn to create prepared statements using mysqli. Prepared statements work for Both the PDO and mysqli extensions in PHP. Source by Social Hero Media is your Edmonton Alberta web design experts call […]

Read More

Partial Print Document JavaScript Tutorial HTML div Content

Lesson Code: http://www.developphp.com/video/JavaScript/Partial-Print-Document-Tutorial-HTML-div-Content Learn to allow users to print specific parts of your documents instead of printing the entire web page. We will apply print buttons near each printable portion of the document. Source by Social Hero Media is your Edmonton Alberta web design experts call 587 200 3383 for a free consultation. Web Design […]

Read More

json tutorial for beginners learn how to program part 1 JavaScript

Lesson Code: http://www.developphp.com/video/JavaScript/JSON-Tutorial-for-Beginners-Learn-How-to-Program Learn JSON for beginners with Adam. JSON stands for JavaScript Object Notation. It is a lightweight format for creating and sending data objects. JSON is a part of JavaScript and not a separate entity, the notation syntax is built into the raw Javascript programming language. Source by Social Hero Media is your […]

Read More

Viewport Percentage Units CSS HTML Layout Tutorial

Lesson Code: http://www.developphp.com/video/CSS/Viewport-Percentage-Units-CSS-HTML-Layout-Tutorial Learn to use the new viewport length values in CSS to size elements relative to the viewing area. The way it differs from normal percentage lengths is that these lengths are always relative to the viewport and not relative to their parent elements. It also helps to make text and other elements […]

Read More

Page Loading Screen Document Preloader Tutorial JavaScript CSS HTML

Lesson Code: http://www.developphp.com/video/JavaScript/Page-Loading-Screen-Document-Preloader-Tutorial Learn how to apply a loading screen overlay to your web pages and documents using HTML, CSS and JavaScript. I will just demonstrate something simple that you guys can expand upon if interested. You can choose to add animated preloader graphics, but make sure they are extremely fast loading so they show […]

Read More

JavaScript prototype Tutorial Add Object Method and Property to Class

Lesson Code: http://www.developphp.com/video/JavaScript/prototype-Tutorial-Add-Object-Methods-and-Properties-to-Class The JavaScript prototype property allows us to add specialized methods and properties to our custom objects and classes. There may be occasions when you must specialize the functionality of an object in your application, and the prototype property allows us to do that. It also enables Object Inheritance in JavaScript, which we […]

Read More