Only the Label is printed out from this:
- $result = mysql_query("SELECT address,label from redirects
- WHERE id=" . $id) or die("Error! " . $mysql_error($dblink));
- list($myAddress,$myLabel) = mysql_fetch_row($result);
16.
- print "" . $myaddress . "" . $myLabel . "\n";
- ?>
When I change the ordering of address and label in line 13 the address is printed out..
What's wrong?
Lein