Iam creating a phone book app using PLSQL.Iam reading values from OID /*This part reads all values from OID*/ if my_vals.COUNT > 0 then FOR i in my_vals.FIRST..my_vals.LAST loop htp.p('<.a href=.>'||my_vals(i)); htp.p('<./a.>'); end loop; end if; One of the values is an image of the person, The value returned is "??" How do I display it? please help....


