Currently I'm NOT having any trouble with pictures. I have some in upload/ folder and have a question. As of now they show small in list which is what I want. I set the width to 100 and leave
heigth alone. I give a folder name of upload/ As of now they show small in view page also. However, I fix this by commenting out two lines of code in pets_view.php. My question is: Will the way phprunner generates code remain basically the same, so all I have to do is comment out those 2 lines in order to make pictures full size in the view page?
Here is segment of code and the lines commented out.
dogpic - File-based Image
$value="";
if(CheckImageExtension($data["dogpic"]))
{
$value="<img";
// $value.=" width=100"; THIS LINE COMMENTED OUT
// $value.=" border=0"; THIS LINE COMMENTED OUT
// commenting these 2 lines makes picture full size in view page
// which is what I want....
$value.=" src=\"".htmlspecialchars(AddLinkPrefix("dogpic",$data["dogpic"]))."\">";
}
$smarty->assign("show_dogpic",$value);
I emailed this, but thought I'd post it here also in case someone else needed to view full size pictures in view page.