Is there a way to add an image to the right of an input row some how?
Here is my input row:
PHP Code:
print_input_row("Image", "image", $sponsors['image'], $htmlise = true, $size = 35, $maxlength = 100, $direction = '', $inputclass = false);
This is the code I need to show next to that:
PHP Code:
echo '<tr><td><img src="/sponsors/' . $sponsors['image'] . '"></td></tr>';
Thanks
Steve