Jump to content

Query string


sandy1028

Recommended Posts

use sessions.

you'll need to use the code:

$_SESSION['v1']=$_POST['name'];

on the first page...

You'll need to start sessions on each page of your site if you want to keep them running on the server, which is a bit of a pain...

but you do that by putting this code at the VERY BEGINNING of your page (no spaces or anything else otherwise you get errors):

 

 <?php 
session_start(); 
header("Cache-control: private"); //IE 6 Fix ?>

 

hope that helps. If not... look up sessions in the php freaks tutorials

Link to comment
https://forums.phpfreaks.com/topic/67882-query-string/#findComment-341226
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.