hope someone can help, I am fairly new to php so please be gentle....
I have a mysql database table containing some text fields and 2 containg small images [ binary data fields ]
I am trying to use dreamweaver mx, to create a recordset and display the data and pictures in a table
eg.
<td><?php echo $row_Recordset1['id]; ?></td>
<td><?php echo $row_Recordset1['ma']; ?></td>
<td><?php echo $row_Recordset1['mo']; ?></td>
<td><?php echo $row_Recordset1['de']; ?></td>
<td><?php echo $row_Recordset1['cor']; ?></td>
<td><?php echo $row_Recordset1['pr']; ?></td>
??? When i get to the pictures I cant seem to get them to display in the browser at all. I have tried some varations of the code below, but no joy.
<td><?php echo "$row_recordset1[photo1]"; ?></td>
<td><?php echo "$row_recordset1[photo2]"; ?></td>
the content tyoe in the header is set to text/html should this be changed ?
thanks in advance
ecosse