Showing posts with label learn php in 10 days. Show all posts
Showing posts with label learn php in 10 days. Show all posts

Thursday, 23 August 2012

Sending Variables from One Page to Another Page in PHP

Another major module in programming languages is sending variables from one page to another page. Usually, for many reasons we need to send some data on one page to be shown on another page. There are two major ways to send variables from one page to another page.

  • Sending variables by using forms.
  • Sending variables without forms.

PHP/Mysql Follow up !

PHP/Mysql Follow up !

In previous tutorials, we have discussed in details how to connect to mysql server and how to execute sql queries.We are going to just go-through again  about database connectivity in php
  • We will connect to database server with mysql_connect()
  • We will select database name with mysql_select_db()
  • We will execute sql command using mysql_query()
That’s all you need to process database connectivity.