Jump to content
php.lv forumi

klase


anonīms

Recommended Posts

http://paste.php.lv/0c9b9f09b6dd7226562767011bc42946?lang=php

Nepiesienieties pareizrakstībai ^^

Tātad kā man dabūt to $Content = include $page, lai $pages saturs tiktu arī uzskatīts kā $Content?

Pašlaik ir tā, ka lapa tiek inklūdota un parādas pirms visiem html atbributiem nevis iekšs <body>

yo!

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

<title>title haha!</title>

</head>

<body>

1

</body>

</html>

Link to comment
Share on other sites

Aizstāj tās $page saturu ar funkciju:

function get_page_content()
{
 return "My page content";
}

 

Un tad savā failā raksti (neaizmirsi pārbaudīt uz GET parametru validāti, citādi "uzhakos" ka nemetās):

include($page);
$content = get_page_content();

Link to comment
Share on other sites

grrr :D Es tā centos, lai nevajadzētu to fju izmantot, jo pašlaik to daru, un riebjas, ka ir dati, kurus iekšs funkcijas vnk neatpazīst un nepieciešams definēt pa jaunu.

 

Teiksim index failā ir $bubu = 'jajajjaja!';

 

bet iekšs function page()

{

echo $bubu; // neko neizvadīs, jo atkal visu vajag definēt pa jaunu.

}

Varbūt ar to var cīnīties citā veidā?

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...