<br><font size=2 face="sans-serif">Hi Charley,</font>
<br><font size=2 face="sans-serif">(I had to send this twice, because the
maplab list bounced the first message back to me)</font>
<br>
<br><font size=2 face="sans-serif">Thanks for your help. &nbsp;Unfortunately,
I do not have the function working yet, but I feel I am close. </font>
<br><font size=2 face="sans-serif">In your posting, are the characters
&quot;==&quot; and &quot;||&quot; valid php syntax?</font>
<br><font size=2 face="sans-serif">Also, your posting is just a portion
of your query.phtml file right? &nbsp;Or is that your entire query.phtml
file?</font>
<br>
<br><font size=2 face="sans-serif">Below is my code, for the areas where
I describe my columns of the attribute table. &nbsp; Do you see any thing
that appears incorrect?</font>
<br><font size=2 face="sans-serif">The URL (with photo name) to my jpegs
is contained in the column &quot;MS_PATH&quot;, the column &quot;photo&quot;
contains only the photo name.</font>
<br>
<br><font size=2 face="Courier New">// loop and use key for titles</font>
<br><font size=2 face="Courier New">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; foreach ($aRows[0] as $key =&gt; $value)</font>
<br><font size=2 face="Courier New">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; {</font>
<br><font size=2 face="Courier New">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; //***********ADDED
FOR HYPERLINK</font>
<br><font size=2 face="Courier New">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if (strcasecmp($key,
&quot;Long_DD&quot;) = &quot;Long_DD&quot;;</font>
<br><font size=2 face="Courier New">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;strcasecmp($key,
&quot;Lat_DD&quot;) = &quot;Lat_DD&quot;;</font>
<br><font size=2 face="Courier New">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;strcasecmp($key,
&quot;photo&quot;) = &quot;photo&quot;;</font>
<br><font size=2 face="Courier New">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;strcasecmp($key,
&quot;MS_PATH&quot;) = &quot;MS_PATH&quot;)</font>
<br><font size=2 face="Courier New">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</font>
<br><font size=2 face="Courier New">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; //********************************</font>
<br><font size=2 face="Courier New">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; $szReturnValue .= &quot;&lt;td bgcolor=\&quot;E2EFF5\&quot;&gt;&lt;font
face=\&quot;Arial, Helvetica, sans-serif\&quot; size=\&quot;2\&quot;&gt;&quot;.$key.&quot;&lt;/font&gt;&lt;/td&gt;\n&quot;;</font>
<br><font size=2 face="Courier New">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; }</font>
<br>
<br><font size=2 face="sans-serif">*************************</font>
<br>
<br><font size=2 face="Courier New">//Look for the attribute value in column
of Job_no, location, siteplan and //summary_2</font>
<br><font size=2 face="Courier New">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; if (strcasecmp($key, &quot;Long_DD&quot;)
= &quot;Long_DD&quot;;</font>
<br><font size=2 face="Courier New">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; strcasecmp($key, &quot;Lat_DD&quot;)
= &quot;Lat_DD&quot; )</font>
<br><font size=2 face="Courier New">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; {$szReturnValue .= &quot;&lt;td bgcolor=\&quot;#ffffff\&quot;&gt;&lt;font
face=\&quot;Arial, Helvetica, sans-serif\&quot; size=\&quot;2\&quot;&gt;&quot;.
$xCell.&quot;&lt;/font&gt;&lt;/td&gt;\n&quot;;}</font>
<br>
<br><font size=2 face="Courier New">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; else if (strcasecmp($key, &quot;photo&quot;)
= &quot;photo&quot;;</font>
<br><font size=2 face="Courier New">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; strcasecmp($key,
&quot;MS_PATH&quot;) = &quot;MS_PATH&quot; )</font>
<br><font size=2 face="Courier New">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; //$xCell
is the attribute value in URL format such as http://localhost/test/test.pdf</font>
<br><font size=2 face="Courier New">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; </font>
<br><font size=2 face="Courier New">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; {$szReturnValue .= &quot;&lt;td bgcolor=\&quot;#ffffff\&quot;&gt;
&lt;a href=\&quot;&quot;.$xCell.&quot;\&quot;&gt; Click here to document&lt;/a&gt;&lt;/td&gt;\n&quot;;}
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</font>
<br><font size=2 face="Courier New">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; }</font>
<br><font size=2 face="Courier New">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; $szReturnValue .= &quot;&lt;/tr&gt;\n&quot;;</font>
<br><font size=2 face="Courier New">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; }</font>
<br>
<br><font size=2 face="sans-serif">********************</font>
<br>
<br><font size=2 face="sans-serif">Thanks!</font>
<br>
<br><font size=2 face="sans-serif">Kevin<br>
</font>
<p><font size=2 color=blue face="Times New Roman">______________________________</font><font size=5 color=blue face="Times New Roman"><br>
Baird </font><font size=2 color=blue face="Times New Roman"><i><br>
Innovation, Excellence, &amp; Service</i></font><font size=3> </font><font size=2 color=blue face="Times New Roman"><i><br>
Oceans, Lakes &amp; Rivers</i></font><font size=2 face="Times New Roman"><b><br>
Kevin Grootendorst </b><br>
905-845-5385 phone &nbsp; &nbsp;905-845-0698 fax<br>
627 Lyons Lane, Suite 200<br>
Oakville, Ontario, Canada L6J 5Z7 </font><font size=2 color=blue face="Times New Roman"><u><br>
</u></font><a href=mailto:kgrootendorst@baird.com><font size=2 color=blue face="Times New Roman"><u>mailto:kgrootendorst@baird.com</u></font></a><font size=3>
&nbsp; &nbsp;</font><a href=http://www.baird.com/ target=_blank><font size=2 color=blue face="Times New Roman"><u>http://www.baird.com/</u></font></a><font size=3>
</font><font size=5 color=blue face="Times New Roman"><br>
______________________________</font>