forum.coppermine-gallery.net

Support => cpg1.5.x Support => cpg1.5 miscellaneous => Topic started by: concreto on June 03, 2010, 12:19:32 am

Title: How can i do a page like this?
Post by: concreto on June 03, 2010, 12:19:32 am
HI. please look this page http://www.adolfoventas.es/galeria/perfil.php (http://www.adolfoventas.es/galeria/perfil.php)  its inside a copermine gallery but only has text... 


 I need a page with the same look of my gallery like the example to put related information ,


Does I have to modify the file anycontent.php???



thx
Title: Re: How can i do a page like this?
Post by: jmatute on June 03, 2010, 09:42:45 am
No. That's a custom page (perfil.php, even the name is spanish) linked from the main menu.

Title: Re: How can i do a page like this?
Post by: Αndré on June 03, 2010, 09:59:20 am
Your file could look like this:
Code: [Select]
<?php

define
('IN_COPPERMINE'true);
require(
'include/init.inc.php');

pageheader('Your custom page');

echo 
'Your text...';

pagefooter();

?>
Title: Re: How can i do a page like this?
Post by: concreto on June 03, 2010, 10:12:59 am
thnaks... thats correct.. thx by info