Originally posted by manavworld
View Post
thank you dude!
<?php
/////////// Work register_global = Off
foreach($_POST AS $key => $value)
{
${$key} = $value;
}
foreach($_GET AS $key => $value)
{
${$key} = $value;
}
function potong($content,$start,$end){
if($content && $start && $end) {
$r = explode($start, $content);
if (isset($r[1])){
$r = explode($end, $r[1]);
return $r[0];
}
return '';
}
}
?>
<form method="get" action="audio/index.php"> <div> <hr/> <span class="csi">Type the name of artist, song title or keyword</span><br/> <img src="../images/speaker.png" alt="music"/> <input name="search" type="text" maxlength="30"/> <input type="hidden" name="source" value="jamglue"/> <input type="submit" value="Search"/> <hr/> </div> </form>
<?php
/////////// Work register_global = Off
foreach($_POST AS $key => $value)
{
${$key} = $value;
}
foreach($_GET AS $key => $value)
{
${$key} = $value;
}
function potong($content,$start,$end){
if($content && $start && $end) {
$r = explode($start, $content);
if (isset($r[1])){
$r = explode($end, $r[1]);
return $r[0];
}
return '';
}
}
?>
Comment