Re: [PHP] control problem? From: Philip Olson (philip <email protected>)
Date: 12/29/00

The link is missing a final " so essentially it's an HTML issue.

> echo "<a
> href=\"www.bakergrfx.com/hsb/select_transaction.php?transaction='
> $transaction'>";
              ^^^
                \
                close the link! (missing " )

philip

On Fri, 29 Dec 2000, kmurrah wrote:

> Greetings:
>
> Could someone help me? I'm having a problem with the following code:
> -----------------------------
> if ($row = mysql_fetch_array($result)) {
> do { print "<tr>";
> print "<td>";
> $transaction=$row["transaction"];
> echo "<a
> href=\"www.bakergrfx.com/hsb/select_transaction.php?transaction='$transactio
> n'>";
> print $transaction; print "</a><td>";
> print $row["order_number"]; print "<td>";
> print $row["product_code"]; print "<td>";
> print $row["description"]; print "<td>";
> print $row["quantity_ordered"]; print "<td>";
> print $row["date_shipped"];
>
> } while($row = mysql_fetch_array($result)); } else {print "Sorry, no records
> were found!";}
> -----------------------------
>
> Here's what happens: I expect a list of all transactions in my database,
> each of them hyperlinked. It works perfectly until the LAST line, at which
> point the code is broken, and instead of Transaction 29 (hyperlinked),I get
> the following:
>
> <a href="www.bakergrfx.com/hsb/select_transaction.php?transaction='29'>29
>
>
> Can anyone tell me what I'm doing wrong?
>
> Thanks so much in advance,
>
> Ken
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: php-general-unsubscribe <email protected>
> For additional commands, e-mail: php-general-help <email protected>
> To contact the list administrators, e-mail: php-list-admin <email protected>
>

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: php-general-unsubscribe <email protected>
For additional commands, e-mail: php-general-help <email protected>
To contact the list administrators, e-mail: php-list-admin <email protected>