Feature Requests item #752902, was opened at 2003-06-11 22:56
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=358956&aid=752902&group_id=8956
Category: None
Group: None
Status: Open
Priority: 5
Submitted By: flobee (flobee)
Assigned to: Nobody/Anonymous (nobody)
Summary: pictures/covers to survey by using the "sid"
Initial Comment:
survey_render.inc line ~51 - 58
<table class="headerGraphic">
<tr>
<td class="image"></td>
</tr>
</table>
***
// NEW SUGGESTION
***
<table border="0" WIDTH="100%">
<tr valign="TOP">
<td WIDTH="95%"><h2 class="surveyTitle"><?php
echo($survey["title"]); ?></h2></td>
<TD WIDTH="*" nowrap="nowrap">
<?php
if(file_exists("covers/" . $survey["id"] . ".jpg") ) {
echo ("<IMG SRC=\covers/".$survey["id"].".jpg\
ALT=\".$survey["title"]."\ hspace=\2\ vspace=\2\
BORDER=\0\>");
}else{
echo ("<IMG SRC=\covers/blank.gif\ ALT=\\
height=\4\ WIDTH=\4\ BORDER=\0\>");
}
?>
</TD>
</tr>
</table>
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=358956&aid=752902&group_id=8956
|