Search found 3 matches

by persaltier
Tue Jul 15, 2003 5:57 pm
Forum: General Discussion
Topic: Why Freelance websites suck...
Replies: 15
Views: 4585

elance.com has come out w/ a solution to the problem....paid membership. it weeds out the script kiddies, but there are still a ton of Indian firms who will bid ridiculously low on certain projects (in the top-tier you have the option of only allowing paying members to see your projects). i've imple...
by persaltier
Wed Dec 18, 2002 10:55 pm
Forum: PHP - Code
Topic: Sending POST variables through header(location..?
Replies: 5
Views: 830

instead of worrying about arrays....store each variable as a session variable before redirecting the user using the header() function, then initiate the session on the subsequent page and grab at the stored session vars. <?php while(list($k, $v) = each ($_POST)){ //add all POST variables to the SESS...
by persaltier
Wed Dec 18, 2002 10:50 pm
Forum: PHP - Code
Topic: retrieving session variables
Replies: 2
Views: 466

to retrieve the variable on subsequent pages, you'll need to first invoke the session for that page... you'd do this by starting the session at the top of the page ---> <?php session_start(); ?> you'll then refer to the session variable using the $_SESSION superglobal if you're using PHP 4.1 + or $H...