You will need to convert the image BLOB to a string by encoding it in base 64 in the PHP script. You will then need to convert it to bytes in the client.
Dim m As Map
m = l.Get(0)
Dim b() As Byte
Dim bmp As Bitmap
Dim s As StringUtils
Dim i As InputStream
b =s.DecodeBase64(m.Get("afbeelding"))
i.InitializeFromBytesArray(b,0,b.Length)
bmp.Initialize2(i)
i.Close
ImgAfbeelding.Bitmap = bmp
How must the php Script look like?
The php Script is like explained in the mysql database tutorial.
I have changed the Code like jayel posted but I am still getting an load image error.