using Predefined variables
Posted: Mon Sep 26, 2005 4:19 am
I was wondering should I use $_POST throughout my script or should I first put the data in a normal var and use that one throughout my script? I mean like this
$var = $_POST["var"];
and use var from then on.
I can also do this no?
$_POST["var"] = "test";
But is it good or bad?
I need to be able to use the data of the post var as a normal var and I was wondering if this is ok or not.
$var = $_POST["var"];
and use var from then on.
I can also do this no?
$_POST["var"] = "test";
But is it good or bad?
I need to be able to use the data of the post var as a normal var and I was wondering if this is ok or not.