How do I do this:

on submit of the form, data will be saved in a session array variable.
The purpose is to use the submitted data page by page. After that, how do I extract them?

thats all..
thanks

First of all call a function which would start a session

session_start();

then transfer the data to an array like

$row=$_session['save_this'];

and at the end of the page please insert this code

$_session['save_this']=$row;
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.