How to do this "search script" ?

Status
Not open for further replies.
4 comments
seems like a custom script, you will be able to develop such system if you are good with php and mysql, Or you can also use wordpress and try to find a similar theme.
 
Sharing file script

This script is for file sharing script with limited allowed download given for free but for user they can upload as many files as they want.So u want a script somethings like that.Simple!!! go to this site http://scriptzone.info , they have lots of this type script, sometime they gave it for free.

hope this help
 
Doesn't look like a script searches for anything for example
http://jpop4u.com/dl_search.php?lid=4707
doesn't link to anything, looks more like its only checking the url in sc and the language in lang
simply could look like this
PHP:
<?php

$link = isset($_REQUEST['sc']) ? $_REQUEST['sc'] : '';
$language = isset($_REQUEST['lang']) ? $_REQUEST['lang'] : '';

if (strstr($link, "uploaded.net"))
	$image = "/dl_help/dl_uploaded.jpg";
else if (strstr($link, "rapidgator.net"))
	$image = "/dl_help/dl_rapidgator.jpg";
else
	$image = "/dl_help/dl_oron.jpg";

?>
<!DOCTYPE html><html xmlns:fb="http://ogp.me/ns/fb#"><head>
<title>JPOP 音楽ダウンロード - jpop4u.com</title>
<head>
</head><body bgcolor="white">
<table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%" height="100%"><tr><td width="100%" align="center" valign="top"><table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%">
  <tr>
    <td width="100%" height="19">
    <p align="center"><b><font size="6">Hint</font></b></td>
  </tr>
  <tr>
    <td width="100%" valign="top"><hr color="#E4E4E4">
    <p align="center">
    <font size="6"><a href="<?php echo $link; ?>">Click here</a> to proceed to the download page.</font></p>
    <p align="center">
    <a href="<?php echo $link; ?>"><img border="0" src="<?php echo $image; ?>" width="600"></a></td>
  </tr>
</table>
</body></html>
 
Status
Not open for further replies.
Back
Top