If I wanted to incorporate a gallery script like that into my website, I would probably use either iFRAMES
HTML Code:
<IFRAME SRC="/path_to_your_gallery_script/gallery.php">
</IFRAME>
Which will just insert the whole gallery into your web page as a frame
Or you could try
PHP Code:
<? include "gallery.php"; ?>
making sure that the web page is renamed to .php so that it recognises the PHP code.
Only problem with that is, you gotta have the webpage and gallery in the same directory.
If it were me, I'd just edit the little snippets of HTML code inside the gallery script to make it look like the rest of the site. Sure it will take longer, but probably less problematic in the long run.
|