I see now!
This is a simple but effect way that you may understand I don't want to be so complicated
Create a file coded gallery.php in this file add:
Code:
<table style="width: 39%; height: 270px">
<tr>
<td><img src="url" /></td>
<td><img src="url" /></td>
<td><img src="url" /></td>
</tr>
<tr>
<td><img src="url" /></td>
<td><img src="url" /></td>
<td><img src="url" /></td>
</tr>
</table>
then create your private page and where ever you want your gallery to be shown!
then add the code
Code:
<?php include "/myfiles/gallery.php"; ?>
This will display your gallery or anything inside of
gallery.php
You just add that simple line of code to your website page and it will appear, you can play with the width and height of table - if it's to big or small.
I hope this helped
If you want a Dynamic gallery visit -
http://www.dynamicdrive.com/dynamicindex4/indexb.html
Have fun!