loading images into OpenGL

I am doing a project in OpenGL where we have to do a solar system and have a space ship orbiting the planets. My question is if I were to make a space ship in 3DS Max, how would I load it into OpenGL?

Export to a (simple) format, read the file in your code to build vertex lists.
Some simple text format simple .obj or .dxf is easy to read and render, but texture coordinates and material information is lost. Ascii scene export (.ase) is more detailed.
.3ds is very old and obsolete but there are loads of loader libraries than can read it.

In .obj file format texture coordinates are not lost.

Indeed, my bad.