Re: Mailtos and links from a query result table!

From: Keary Suska <hierophant(at)pcisys(dot)net>
To: Postgres-PHP <pgsql-php(at)postgresql(dot)org>
Subject: Re: Mailtos and links from a query result table!
Date: 2002-05-09 22:13:12
Message-ID: B9005097.E423%hierophant@pcisys.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-php

on 5/9/02 2:32 PM, angelo(dot)rigo(at)globo(dot)com purportedly said:

> Hi!
> I need to make mailtos and hiperlinks in a query result table
> i dont know wich variable to pass to the <a href =""> to make this happen

Neither can we, since you don't give us your table schema, or the database
calls. What is your select statement? What function are you using to
retrieve rows?

> my code below is not working! any idea?

No. We have no idea what "not working" means. If you want help, you will
need to explicitly indicate what is not happening the way that you would
expect. And you should include all code for the algorithm (you can leave out
the pg_connect(), as that shouldn't be necessary, and is a security risk).
The snippet below is useless to determine what may be wrong.

> printf ("<tr bgcolor='$bgcolor'><td>%s</td><td>%s</td><td><a
> href='mailto:$myrow[19]'>%s</a></td><td><a
> href="$myrow[9]">%s</a></td><td>%s</td><td>%s</td></tr>
> ",$myrow[1], $myrow[2], $myrow[3], $myrow[19], $myrow[9], $myrow[10]);
> $row++;
> }
> while ($row < $numrows);
> printf ("</table>
> ");
> pg_close($db);

A tip: on top of using associative arrays as was mentioned in a previous
response, your use of printf() is superfluous and functions only to make
your code more difficult to read. This isn't C--use print():

print <<<EOS
<tr bgcolor='$bgcolor'>
<td>$myrow[1]</td>
<td>$myrow[2]</td>
<td><a href='mailto:$myrow[19]'>$myrow[3]</a></td>
<td><a href="$myrow[9]">$myrow[19]</a></td>
<td>$myrow[9]</td><td>$myrow[10]</td>
</tr>

EOS;

Much cleaner, no?

Keary Suska
Esoteritech, Inc.
"Leveraging Open Source for a better Internet"

In response to

Browse pgsql-php by date

  From Date Subject
Next Message Abaneme Chinedu 2002-05-12 13:08:09 A CRY FOR HELP!
Previous Message Surojit Niyogi 2002-05-09 21:31:50 Re: Mailtos and links from a query result table!