keepingbusy
Programmer
Hi
Some coding contained in a php file on our site has the following code:
Code:
case "text":
echo "<tr>";
echo "<td valign='top'><strong>".$field['Title']."</strong></td>";
echo "<td>";
if($field['IsLink'] == 'yes'){
echo "<a target='".$field['Target']."' href='".$listing[$field['Title']]."'>".$field['LinkText']."</a>";
}else
echo $listing[$field['Title']];
I am hoping my question is easy for you guys.
If I do not want a particular field name or field names to appear but just the content of the field to appear what do I need to add or do to the above code?
An example of this could be: The field name is Summary. I do not want the field name shown but a blank space instead but I still want the contents of the summary field to show.
Some guidance would be appreciated.
Many thanks
KB