On Tue, Mar 20, 2001 at 10:05:06PM -0800, [EMAIL PROTECTED] wrote:
> Why wouldn't this redirect?  The query works, but the page won't redirect. I
> have used the same two lines successfully on other pages.  I'm very tired,
> it's probably obvious.
> 
> <?php
> // assuming $uid, $itemid, $week, $cur_wk in querystring
> 
> //connect to db
> $db = mysql_connect ("localhost","user","password");
> mysql_select_db("mydb",$db);
> 
> //update item - weekX to Taken and record buyer
> $sql = "update items set week" . $week . " = 'T', buyerID = " . $uid .
>                " where itemID = " . $itemid;
> $result = mysql_query($sql);
> 
> $redirurl = "bid.php?uid=" . $uid . "&itemid=" . $itemid;
> header ($redirurl);
> ?>

It appears your code is missing the "Location: " part of the header.

-- 
Jason Stechschulte
[EMAIL PROTECTED]
--
It's getting harder and harder to think out loud.  One of these days
someone's gonna go off and kill Thomas a'Becket for me...
             -- Larry Wall in <[EMAIL PROTECTED]>

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to