A
Anonymous
Guest
i need to include a file and then explode it in a certain place but it jsut displays the whole thing, im really bad at php so i would rally appreciate it iif someone would help me with this. :help:
Ive tried this:
and this:
and neither have worked.
Ive tried this:
Code:
<?php
$thjsrth = explode("x", include("---"));
$abcdefghijklmnop = "$thjsrth[1]";
echo "$abcdefghijklmnop";
?>
and this:
Code:
<?php
$yimh = include("---");
$thjsrth = explode("x", $yimh);
$abcdefghijklmnop = "$thjsrth[1]";
echo "$abcdefghijklmnop";
?>
and neither have worked.