<br><font size=2 face="sans-serif">Steffen, </font>
<br><font size=2 face="sans-serif">I've switched on some error messages,
and I'm getting the following:</font>
<br>
<br><font size=3><b>Parse error</b>: parse error, unexpected T_VARIABLE
in <b>C:\Program Files\Apache Group\Apache2\htdocs\maplab-2.2\projects\gmf_apps\IJC_LCC\query.phtml</b>
on line <b>189</b></font>
<br>
<br>
<br><font size=2 face="sans-serif">Line 189 is the one that begins &quot;$szReturnValue.=&quot;
&nbsp;below:</font>
<br>
<br>
<br><font size=2 face="sans-serif">// loop and use key for titles</font>
<br><font size=2 face="sans-serif">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; // $Key is equal to the attribute name, which is also the header
of column</font>
<br>
<br><font size=2 face="sans-serif">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
foreach ($aRows[0] as $key =&gt; $value)</font>
<br><font size=2 face="sans-serif">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
{</font>
<br><font size=2 face="sans-serif">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // The
purpose of this if loop is to find the only attribute name we want to display</font>
<br>
<br><font size=2 face="sans-serif">&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="sans-serif">&nbsp; &nbsp; &nbsp; &nbsp; &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="sans-serif">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp;strcasecmp($key, &quot;MS_PATH2&quot;)
== &quot;MS_PATH2&quot;</font>
<br><font size=2 face="sans-serif">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </font>
<br><font size=2 face="sans-serif">&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="sans-serif">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
}</font>
<br><font size=2 face="sans-serif"><br>
</font>
<br><font size=2 face="sans-serif">I'm by no means a PHP programmer, so
any tips/tricks would be greatly appreciated.</font>
<br><font size=2 face="sans-serif">Thanks.</font>
<br>
<br><font size=2 face="sans-serif">Kevin</font>
<p>
<br>
<br>
<br>
<table width=100%>
<tr valign=top>
<td width=40%><font size=1 face="sans-serif"><b>Steffen Macke &lt;sdteffen@web.de&gt;</b>
</font>
<br><font size=1 face="sans-serif">Sent by: maplab-users-bounces@lists.maptools.org</font>
<p><font size=1 face="sans-serif">09/01/2004 03:42 PM</font>
<td width=59%>
<table width=100%>
<tr>
<td>
<div align=right><font size=1 face="sans-serif">To</font></div>
<td valign=top><font size=1 face="sans-serif">maplab-users@lists.maptools.org</font>
<tr>
<td>
<div align=right><font size=1 face="sans-serif">cc</font></div>
<td valign=top>
<tr>
<td>
<div align=right><font size=1 face="sans-serif">Subject</font></div>
<td valign=top><font size=1 face="sans-serif">Re: [maplab-users] links
from map to jpg</font></table>
<br>
<table>
<tr valign=top>
<td>
<td></table>
<br></table>
<br>
<br>
<br><font size=2><tt>Kevin,<br>
<br>
&gt; I changed the code, but the link still does not work.<br>
<br>
Are you getting any error messages? Please check that you've switched<br>
on as many error and warning messages in php.ini as possible.<br>
<br>
My code snippet had a small problem (I used or instead of ||)<br>
Could you check the snippet below.<br>
<br>
If it's not working and you don't get any error messages, please add some
<br>
debug code E.g. <br>
echo($key);<br>
echo($xCell);<br>
<br>
and post the results to the list.<br>
<br>
Steffen<br>
<br>
// loop and add a cell for each result<br>
foreach ( $aRow as $key =&gt; $xCell ) {<br>
&nbsp; // $xCell is the attribute value, in this case,when the $key attribute
name &nbsp;<br>
&nbsp; // is equal to &quot;Long_DD&quot; and &quot;Lat_DD&quot; only display
the value of attribute.<br>
&nbsp; if((strcasecmp($key, &quot;Long_DD&quot;) == 0) ||<br>
&nbsp; &nbsp; &nbsp;(strcasecmp($key, &quot;Lat_DD&quot;) == 0 )) {<br>
&nbsp; &nbsp; &nbsp;$szReturnValue .= &quot;&lt;td bgcolor=\&quot;#ffffff\&quot;&gt;&quot;.<br>
&nbsp; &nbsp; &nbsp; &nbsp;&quot;&lt;font face=\&quot;Arial, Helvetica,
sans-serif\&quot; size=\&quot;2\&quot;&gt;&quot;. &nbsp; &nbsp; <br>
&nbsp; &nbsp; &nbsp; &nbsp;$xCell.&quot;&lt;/font&gt;&lt;/td&gt;\n&quot;;<br>
&nbsp; }<br>
<br>
&nbsp; // when the attribute name is equal to MS_PATH2, hyperlink according
to the <br>
&nbsp; // value of attribute, the attribute value of MS_PATH2 should be
simliar as &nbsp;<br>
&nbsp; // http://localhost/photoalbum/image.jpg &nbsp;<br>
&nbsp; //photoalbum folder with images is put at your web server.<br>
&nbsp; <br>
&nbsp; else if(strcasecmp($key, &quot;MS_PATH2&quot;) == 0) {<br>
&nbsp; &nbsp; $szReturnValue .= &quot;&lt;td bgcolor=\&quot;#ffffff\&quot;&gt;
&lt;a href=\&quot;&quot;.$xCell.<br>
&nbsp; &nbsp; &nbsp; &quot;\&quot;&gt; Click here to document&lt;/a&gt;&lt;/td&gt;\n&quot;;<br>
&nbsp; } &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<br>
}<br>
<br>
_______________________________________________<br>
Maplab-users mailing list<br>
Maplab-users@lists.maptools.org<br>
http://lists.maptools.org/mailman/listinfo/maplab-users<br>
</tt></font>
<br>