Basics well first, adjust your Server Config so .3ds, .dts, .ft files are downloadable. Make a model and save it in to one of those formats. Next just use basic showimg controls.
PHP Code:
//#CLIENTSIDE
function onCreated()
{
switchtoOpenGL();
with ( findImg( 501)) {
shape = "file.3ds";
x = this.x;
y = this.y;
}
onTimeout();
}
function onTimeout()
{
if ( keydown( 1))
findImg( 501).rotation += 1;
else if ( keydown( 3))
findImg( 501)).rotation -= 1;
setTimer( 0.05);
}
Invern basically helped me out with this so thank him not me.