Enter your Sign-on user name and password.

Forgot password?
  • Follow us on:
Loading video...
Text Comments (3)

1 answer

Last reply by: christopher reece
Tue Jul 31, 2012 3:53 PM

Post by Nitheesh Menon on May 7, 2012

This video is not working.After playing for three minutes it stops and starts playing from the begining i am fed up with ur service i faces the same issue with other files aswell.

0 answers

Post by Ranlie Basas on April 24 at 02:18:25 AM

i honestly think you should focus on showing how to code it i find this tutorial very boring as you only talk about what the code does but you are not showing how to code it i am a little advance php coder and i would say that this tutorial is pretty useless because there is no actual code that you are writing in all of the videos that you actually wrote the php script on your lecture.

Script Input & The GET Method

  • There are three basic ways a user can provide input to a PHP script: the HTTP GET method, the HTTP POST method, and Cookies.
  • These methods provide input to a script via pairs of strings, known as name/value pairs .
  • The HTTP GET method provides input to a script by appending name/value pairs to a destination script’s URL.
  • HTML forms are composed of a set of input controls that each represent a name/value pair to be sent to a script upon the form's submission.
  • The HTML <form> tag is used to declare an HTML form. It has two key attributes: action and method .
  • Query strings are name/value pairs appended to a URL after a question mark. Each name and value are separated by an equals sign, and each name/value pair are separated by an ampersand sign.
  • URLs have specific syntax rules so query strings added to URLs must be encoded to follow those rules. This is known as URL Encoding .
  • urlencode() is a built-in PHP function used to properly encode URL query strings.
  • Additional Resources:

Script Input & The GET Method

Lecture Slides are screen-captured images of important points in the lecture. Students can download and print out these lecture slide images to do practice problems as well as take notes while watching the lecture.

Computer Science: Introduction to PHP