Blank Page Blank Page
 

News:

cpg1.5.48 Security release - upgrade mandatory!
The Coppermine development team is releasing a security update for Coppermine in order to counter a recently discovered vulnerability. It is important that all users who run version cpg1.5.46 or older update to this latest version as soon as possible.
[more]

Main Menu

Blank Page

Started by louis29126, November 25, 2006, 10:40:23 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

louis29126

I searched it but I needed more infro.
<?php
define
('IN_COPPERMINE'true);
require(
'include/init.inc.php');
pageheader();
pagefooter();
ob_end_flush();
?>

I got a few questions
Where do I put the HTML?
Where do I put the title of the name?

Sami

QuoteWhere do I put the HTML?
between pageheadr() & pagefooter() functions something like this:

<?php
define
('IN_COPPERMINE'true);
require(
'include/init.inc.php');
pageheader();
?>

<table width="100%"><tr><td>This is HTML !!!</td></tr></table>
<?php
pagefooter
();
ob_end_flush();
?>



QuoteWhere do I put the title of the name?
set it as argument for pageheader() function something like this

pageheader("custom title");
‍I don't answer to PM with support question
Please post your issue to related board

louis29126

Thanks. Sorry for the trouble.  :P