Guest Posted June 24, 2007 Share Posted June 24, 2007 Is it possible to change a post variable like $_POST['IdListing'] = "12"; Quote Link to comment Share on other sites More sharing options...
AndyB Posted June 24, 2007 Share Posted June 24, 2007 No. Why would you want to? Quote Link to comment Share on other sites More sharing options...
DJTim666 Posted June 24, 2007 Share Posted June 24, 2007 You should be putting $_POST into a variable and then calling it. Example <?php $var = $_POST['IdListing']; //this will be w.e was posted on the previous page echo "The ID Listing is $var"; // echo the result of $var ?> -- DJ Quote Link to comment Share on other sites More sharing options...
bigbob Posted June 24, 2007 Share Posted June 24, 2007 I think u can do this: <?php $var = $_POST['var']; $var = 4; ?> Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.