hello all php experts, I have recently seen one of the site which was generating fake adsense.It was made in php & I really like the generator.Here is screenshot for better understanding. Now when I add amount in the column, it would open in new tab with the added amount. Now It was about old adsense account and dashboard. i want to create it for new adsense account dashboard. Is anyone here , who can explain me entire procedure to generate fake adsense report. I want to add it on my website for http://www.ehowportal.com
Here's how I would do this, assuming you have some knowledge of creating HTML pages and are just looking for the php code you need to make this work: Go to your Google adsense account reports page and right click on the page. Select "View source" and copy all of the HTML and paste it into a new html file on your computer. This will give you the starting point for your generated page. You will also need to download the Google logo and any other images that appear on the page, plus a copy of the CSS file (there will be a link to it in the HTML). Open this new file in your HTML editor and make sure that it looks the way you want it to. Once you have it looking like the actual Google page, save a copy as fake-google.php. You'll need a small form to generate the fake adsense page: <form method="post" action="fake-google.php"> <label>Money you wanna make today <input type="text" name="today" /> </label> <label>Money you made yesterday <input type="text" name="yesterday" /> </label> <input type="submit" value="submit"/> </form> HTML: This form will post to your fake-google.php page In your fake-google.php file, you will want to show the values that were entered in your form. Find the amounts and replace the numbers with the appropriate lines of code below. It should look something like Total Earnings $<?=$_POST['today']?> <?=$_POST['today']?> <?=$_POST['yesterday']?> PHP:
Dear ekim941, Thank you for valuable suggestion. I think it's not like that. When I open my adsense account, it do not shows value for today earning like that. Please refer the same project here @ http://www.hacktrix.com/google-adsense-money-generator/ Whichever number you are writing in the box, that will be appear on the image. I want to make like this.
The real question should be, why you want to do this? The only real reason i can think of is if you are trying to sell a site with fake adsense earnings, if this isn't the case please enlighten me...
I am learning php coding and trying different website widgets to be created by me. I have tried lots of projects but I have seen this kind of thing for the first time, so I am enthusiastic to learn this.
Dear malky, For your clarification, I would like to mention that I own two tech sites http://www.theandroidportal.com/ [PR2] & http://www.ehowportal.com/ [PR3] I am taking care of those both site as my children and I would never sell it. This everything I mentioned here is I want to learn this kind of scripts.
No problem...just wondering as to what it could possibly be used for... Basically what you need to do is have a dig around on google about how to create an image and overlay text from a form input using php, you probably won't find exactly what you need but you should get a general idea of how it's done.
I would use ImageMagick & Ghostscript.... Create a master PDF file which would be the layout, then using the user input, change the amount earned today & yesterday, convert it to .jpg and bobs you're uncle!
Thank you all. Finally I did it. Please the fake adsense income generator by Ehowportal @ http://www.ehowportal.com/fake-adsense-generator/ and let me know your suggestions regarding this.
My suggestion is to take it off from the internet. Because people use this sort of service to sell crappy sites on DP.
Take a screenshot of the new Adwords screen. This will be used as your template. Then in php simply use image magic to to add text to the image.