Date: 12/29/00
- Next message: Cody Caughlan: "[PHP-DB] Oracle8i & LDAP -- ldap doesnt connect to server because of OCI"
- Previous message: Anthony Martin: "RE: [PHP-DB] 'Best' DB for Linux/Apache/PHP?"
- Next in thread: Cody Caughlan: "Re: [PHP-DB] control problem?"
- Reply: Cody Caughlan: "Re: [PHP-DB] control problem?"
- Reply: Blaster: "[PHP-DB] RE: [PHP] control problem?"
- Reply: Philip Olson: "[PHP-DB] Re: [PHP] control problem?"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
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 Database Mailing List (http://www.php.net/) To unsubscribe, e-mail: php-db-unsubscribe <email protected> For additional commands, e-mail: php-db-help <email protected> To contact the list administrators, e-mail: php-list-admin <email protected>
- Next message: Cody Caughlan: "[PHP-DB] Oracle8i & LDAP -- ldap doesnt connect to server because of OCI"
- Previous message: Anthony Martin: "RE: [PHP-DB] 'Best' DB for Linux/Apache/PHP?"
- Next in thread: Cody Caughlan: "Re: [PHP-DB] control problem?"
- Reply: Cody Caughlan: "Re: [PHP-DB] control problem?"
- Reply: Blaster: "[PHP-DB] RE: [PHP] control problem?"
- Reply: Philip Olson: "[PHP-DB] Re: [PHP] control problem?"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

