Category Archives: Passing Variables

How to move variables between pages in php

Session Varaibles – Moving inside your Application – An introduction

Our focus for this series of postings has been on the problems associated with getting information from one page to another in a stateless, Internet environment, where nothing is saved from one web page to the next. How do we … Continue reading

Posted in Passing Variables | Tagged | Leave a comment

Passing Variables – PHP Cookies

Before we set some cookies, let’s look at the flow of messages and responses between your computer, and the server, where the web pages are stored. When you click on a link to go to a web site, your browser … Continue reading

Posted in Browsers, HTML, Passing Variables | Tagged , , | Leave a comment

Cookies – an Introduction

Cookies, cookies, cookies, we’ve heard about cookies now for many years, the perenial red herring, used like the threat of a nuclear bomb, to strike fear in the hearts of all who used a personal computer to surf the Internet, … Continue reading

Posted in Browsers, HTML, Passing Variables | Tagged , , | Leave a comment

Passing Variables – PHP Post – Fun with Forms

In my last post, we covered the GET method, get is one of two methods used to get information from the client’s browser to the server, the other method being “POST.” You’ll find that “post,” by a wide margin, is … Continue reading

Posted in HTML, Passing Variables | Tagged , | Leave a comment

Passing Variables – PHP Get – Get it!

Last post we talked about how we normally get data into a system with a form. The user enters his information into the form and clicks the submit button. The browser then sends the data to the server. Back at … Continue reading

Posted in HTML, Passing Variables | Tagged , | Leave a comment