Matt Hedges wrote:
<snip>
> When I put the code below, I get a "can't send header" error.
>
> I tried changing the echo to <a href="page.php?id=$id">page</a>, but
> the page brings up page.php?id=  (id = nothing).
</snip>

If it says it can't send the headers, that means that headers have already
been outputted. PHP automatically sends headers before anything is printed
to the page. In other words, make sure that you put your header() call
before any echo statements on the page.

Not having the id value is a different problem. If you've just inserted
something and need to get it out, there are functions to retrieve the most
recent auto-increment value from the database. If you're using MySQL it is
mysql_insert_id().

Katie Dewees
Web Developer/PHP Programmer
[EMAIL PROTECTED]
http://www.evans-young.com

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to