Need a PHP Script? I'll Make it for FREE! Let me know what you guys need.

chrisking

Junior Member
Joined
Feb 24, 2009
Messages
147
Reaction score
610
Hi all!

As a long member I learned a lot and earned a lot!
All thanks to bhw and you guys!

Now I want to give back to the community.

I created lots of blackhat php tools, scrapers, bots and scripts.

Just post your needs, and I will create it for free.
And post it here on bhw, so everyone can use it!

If there is some idea a lot of people need I will create that one first.

Just let me know your idea!

Regards,

Chris
 
Hello,
I don't know if it's already made or not but a tool for automaticly spin the RSS source and create another RSS feed from it would be really, REALLY great. The script should work with a synonym database. I'm not a coding expert but it doesn't seems like a big thing to create. We guys can contribute to you to create a better synonym database, even in different languages. Or you can just create the script and everyone can use it with their own database.
 
Tried adsense with a simple poll site. Got more than 2500+ visitors in a day but had only 21 clicks so far. It's not even close to what I expected. Really disappointing. I'm still waiting to hear new ideas.
 
Hi chrisking, really nice from you to offer such a service!

Now I know I'm kind of a long time lurker, but only recently I'm in need of some kind of script, that automatically posts comments under uploads of random users and likes the uploads of those users on Deviantart or 500px. I'm not quite sure if such a thing can be done using PHP, but if you want to try and give back some results I would be more than happy :-)

Anyway thanks for your work!
 
I need a working php script to backup mysql database to dropbox regularly. Let me know if that can be done.
Thanks.
 
nice for you to share your time like this Chris and also get some good ideas in the meantime, if might be a little overwhelming as everybody will want something else, though try to get as many ideas as you can and after that make a voting thread so people vote for which they want most.

Hi all!

As a long member I learned a lot and earned a lot!
All thanks to bhw and you guys!

Now I want to give back to the community.

I created lots of blackhat php tools, scrapers, bots and scripts.

Just post your needs, and I will create it for free.
And post it here on bhw, so everyone can use it!

If there is some idea a lot of people need I will create that one first.

Just let me know your idea!

Regards,

Chris
 
Thank you a lot for what are you trying to do.I hope in one day more of us to become like you to earn "a lot" :)) and give something to community. Please if you can help me with a script for the phone unlocks , like that one: select model , network , country etc; and if its posible to work with an api key to from a cell unnlock provider like unlockbase dot com
 
Do you have some powerful Google suggest scraper (i have tried many but looking for more powerful one to generate huge amount of keywords)? Or some scraper to scrape torrents (to scrape all games, softwares or movies - titles and some more info)?

Cheers
 
Just a question, is it hard to make a scraper that is programmed in PHP? I've made some scrapers in the past using C# and HtmlAgilityPack (a HTML parser), but it can't run 24/7 on a webserver, like PHP can.
 
Hi

i wonder if you can create a php file that do the following.

lets say i have a file called ugvhfbi.zip hosted in my server...

i want to add the link to the file a to a landing page and when the visitor click download the file takes the name of the page.

example:
downlad,com/?name=supergoodfile.zip

and the visitor gets supergoofile.zip instead of ugvhfbi.zip

i hope you can do it.

thanks in advance
 
Suggestion:

Script that can loop through a list of fake users and get those users to do a simple action, like vote on a post.

This is useful to give the impression to readers that a site has more active users than reality. So people will take notice.

I'm starting a reddit-style site and I couldn't find a script that does this so far.
 
Hi

i wonder if you can create a php file that do the following.

lets say i have a file called ugvhfbi.zip hosted in my server...

i want to add the link to the file a to a landing page and when the visitor click download the file takes the name of the page.

example:
downlad,com/?name=supergoodfile.zip

and the visitor gets supergoofile.zip instead of ugvhfbi.zip

i hope you can do it.

thanks in advance

Code:
[FONT=Consolas]<?php
// Note, you should pull the name of the page from a database.
$pageName = "supergoodfile";
[/FONT]header('Content-type: application/pdf');
header('Content-Disposition: attachment; filename="$pageName.zip"');
readfile('ugvhfbi.zip');
?>
 
i wonder if you can create a php file that do the following.

lets say i have a file called ugvhfbi.zip hosted in my server...

i want to add the link to the file a to a landing page and when the visitor click download the file takes the name of the page.

example:
downlad,com/?name=supergoodfile.zip

and the visitor gets supergoofile.zip instead of ugvhfbi.zip

i hope you can do it.

thanks in advance


Code:
[/FONT][FONT=Consolas]<?php
// Note, you should pull the name of the page from a database.
$pageName = "supergoodfile";
[/FONT][FONT=Verdana]header('Content-type: application/pdf');[/FONT]
[FONT=Verdana]header('Content-Disposition: attachment; filename="$pageName.zip"');[/FONT]
[FONT=Verdana]readfile('ugvhfbi.zip');[/FONT]
[FONT=Verdana]?>

Suggestion:
Script that can loop through a list of fake users and get those users to do a simple action, like vote on a post.

This is useful to give the impression to readers that a site has more active users than reality. So people will take notice.

I'm starting a reddit-style site and I couldn't find a script that does this so far.


Create a value in the table for your users to label them as fake. For example "Fake" TINYINT(1)
Use a SQL query to gather all of them. (Assuming PDO is used for this example)
Code:
[FONT=Verdana]<?php[/FONT]
[FONT=Verdana]function likePosts($post_id, $like_limit) {[/FONT]
[FONT=Verdana]  include 'Database.php';[/FONT]
[FONT=Verdana]  $connection = Database::getConnection();[/FONT]
[FONT=Verdana]  $statement = $connection->prepare("SELECT * FROM `accounts` WHERE `fake`=1 LIMIT :lim);[/FONT]
[FONT=Verdana]  $statement->bindParam(":lim", $like_limit);[/FONT]
[FONT=Verdana]  if($statement->execute()) {[/FONT]
[FONT=Verdana]    while($row = $statement->fetch()) {[/FONT]
[FONT=Verdana]      $statement = $connection->prepare("INERT INTO `likes` (`post_id`, `user_id`) VALUES ([/FONT]:p[FONT=Verdana]ost_id, :user_id);");[/FONT]
[FONT=Verdana]      $statement->bindParam("[/FONT]:p[FONT=Verdana]ost_id", $post_id);[/FONT]
[FONT=Verdana]      $statement->bindParam(":user_id", $row['user_id']);[/FONT]
[FONT=Verdana]      $statement->execute();[/FONT]
[FONT=Verdana]    }[/FONT]
[FONT=Verdana]  }[/FONT]
[FONT=Verdana]}[/FONT]
[FONT=Verdana]?>
[/FONT]

This script is just an example and assumes the use of PDO for a database connection.
 
What you think about a real google clon for the hidden web? There are servival search enginges, but they all suck.
 
Back
Top