Scusa la mia ignoranza...come verrebbe?
Altra cosa, va bene la insert che effettuo dopo?:
Grazie infinite, kuilseraCodice PHP:
string SQL = "INSERT INTO Pictures (picture1) VALUES ('" + nomedelfile + "')";
SqlCommand comando = new SqlCommand(SQL, connection);
comando.CommandText = SQL;
try
{
comando.ExecuteNonQuery();
}
catch (Exception ex)
{
Response.Write(ex.ToString());
}
finally
{
connection.Close();
}