]Hello! I need an example of how to send an image to a SQL database with PHP, to save the image in a field blob. I loaded the image in a imageview field. now I can send string data types correctly, but also need to send a picture regards
B4X:
sub Boton_Click
job2.Initialize ( "insertp", Me)
job2.Download2("http://www.inteliquestion.com/acceso_base_datos.php", Array As String ("nombre", nombre.Text ,"apellido" ,apellido.Text,"Ntelefono" ,Ntelefono.Text))
nombre.Text = ""
apellido.Text = ""
ToastMessageShow("registro ingresado",True)
End Sub
Sub JobDone (Job As HttpJob)
Log("JobName = " & Job.JobName & ", Success = " & Job.Success)
If Job.Success = True Then
Select Job.JobName
Case "InsertP"
'print the result to the logs
Log(Job.GetString)
Case "OtherFunction"
'Do some things
End Select
Else
Log("Error: " & Job.ErrorMessage)
ToastMessageShow("Error: " & Job.ErrorMessage, True)
End If
Job.Release
End Sub
Last edited: