:
This message was edited by nugent at 2006-9-15 8:39:50
: Well the best place to start is with the php homepage (http://www.php.net) or a php book.
:
: php outputs html (which you must know), so to incorporate an image called my_pic.png you output:
:
: <img src=my_pic.png>
:
: so in php:
:
: print("<img src=my_pic.png>");
:
:
: so include a movie in html:
:
: <object data=movie.mpg type=video/mpeg></object>
:
: in php:
: print("<object data=movie.mpg type=video/mpeg></object>");
:
: php can create flash files using the ming library (check the manual) but unless your flash file contains dynamic content then you are better off create the flash file in macromedia (adobe) flash ( a very expensive piece of software for creating flash .swf files) and then using the <object> tag from html to embed it in the webpage
:
: hope this helps, if you any more questions, you know where to ask them
:
:
:
:
:
: ------
: nugent
:
:
:
:
:
:
Thanx mate thats going to be a great help!