Connecting...

This is a quick preview of the lesson. For full access, please Log In or Sign up.
For more information, please see full course syllabus of Introduction to PHP
For more information, please see full course syllabus of Introduction to PHP
Introduction to PHP Web Application Development
Lecture Description
In this lesson our instructor talks about web application development. First, he discusses version 6.2 and 7.0. Then he talks bout version 7.1 and some coding examples. He ends the lesson with a helpful homework challenge.
Bookmark & Share
Embed
Share this knowledge with your friends!
Copy & Paste this embed code into your website’s HTML
Please ensure that your website editor is in text mode when you paste the code.(In Wordpress, the mode button is on the top right corner.)
×
Since this lesson is not free, only the preview will appear on your website.
- - Allow users to view the embedded video in full-size.
Next Lecture
Previous Lecture
0 answers
Post by sorin dragon on March 14, 2016
Keith in config you forgot to add your settings. I mean the folder where you put all the exercises.
This is my modification:
// Define root URI for this version of the webapp
define('ROOT_URI', '/educator-php-intro/web_app/version-' . VERSION . '/');
// UPDATED v6.1
// Image directory URI constant
define('IMAGE_DIR', '/educator-php-intro/web_app/images/');
comparing with what was before:
// Define root URI for this version of the webapp
define('ROOT_URI', '/intro2php/web_app/version-' . VERSION . '/');
// Updated v6.1
// Image directory URI constant
define('IMAGE_DIR', '/intro2php/web_app/images/');
So for the prof this was the forlder intro2php and for me I put educator-php-intro.
I use wamp, so this forlder educator-php-intro is in C:\wamp\www\educator-php-intro\
0 answers
Post by Keith Sheridan on October 13, 2014
Hi, The store.php page is not recognize the config.php file for me. Any suggestions why this is happening thanks.