|
|
|
|
Title: PHP Tutorials: Basic PHP Proxy
Added: Feb 12, 2009
Author: phpacademy
Duration: 8:59
Description:
Create your own basic PHP proxy.Remember, a proxy should not be used for illegal activity. This tutorial will cover the simplicity of creating a proxy using PHP, and does not encourage such illegal activity.Official websitehttp://phpacademy.orgSupport Forumhttp://phpacademy.org/forumFollow us on Twitter!http://twitter.com/phpacademy
Related Videos:
Videos related to 'PHP Tutorials: Basic PHP Proxy'
Channel: Education
Tags: php programming tutorial tutorials help learn learning video videos lesson teach teaching me proxy http server create own your
php programming tutorial tutorials help learn learning video videos lesson teach teaching me proxy http server create own your
Youtube Comments: 41
nortonkid123 Says:
Sep 15, 2010 - you should have used base64_encode($url) and used that like the other proxies such as glype and others use.
Devbizz Says:
Jan 20, 2011 - That is NOT a PHP Proxy... check my tutorial... THAT is a 100% Real PHP Proxy:
suchal12 Says:
Feb 28, 2011 - @phpacademyi m having problem, ereg_replace() function is deprecated in php5 and preg_replace() which is new version is not working with same code, may be having any problem of parameter 2 because it want it in pattern form. any one please help. i request owner of this channel to please rewrite all these old codes in php5 in the description of the video.
AmpareEngine Says:
Mar 13, 2011 - I'm ever get that I'm using php 5 too and now I'm fix it
lessavit Says:
Mar 18, 2011 - Youve obtained the source of Google via proxy but your machine still gets the images via direct connection. The proxy needs to download the content and give it to you. This is a good starting point for anyone interested though :)
nate0person Says:
Jun 1, 2011 - easier code: echo file_get_contents($_REQUEST['url']);check it outpacsurge(dot)tk
xWindowsMEx Says:
Jun 26, 2011 - @suchal12,Place a '@' symbol after the first $part(s). It should look like this.@$part = ereg_replace('
daeheadshot Says:
Jul 4, 2011 - will an IFRAME show the ip of the server the IFRAME is hosted on or the server of the computer connected to the server...?
daeheadshot Says:
Jul 4, 2011 - also i read this on PHP.net:WarningThis function has been DEPRECATED as of PHP 5.3.0. Relying on this feature is highly discouraged.
daeheadshot Says:
Jul 4, 2011 - Its funny how major websites got shitty styled source code...
vxnuke Says:
Jul 24, 2011 - no an iframe will show YOUR ip not the server that is hosting the webpage
LivingSkits Says:
Sep 5, 2011 - They do that so it's not as easy to hack. It would be really easy for people to see what does what if everything was indented properly and stuff
BuzzingFridge Says:
Sep 8, 2011 - Looks ok, but what's the point when this goes to the real google when you click? Is it only to go to the homepage without being blocked?
urlove12day Says:
Oct 1, 2011 - thank you
junsungwong Says:
Nov 30, 2011 - i like how you keep saying we shouldn't use proxies illegally. i dont even know how this is possible. teach me? :)
TheDeadSource Says:
Dec 8, 2011 - He means don't use it to avoid security systems.
daniel0code Says:
Dec 24, 2011 - @suchal12 This should work:$part = preg_replace('/src="/','src="'.$url, $part);$part = preg_replace('/action="/','action="'.$url, $part);
Stormrage32 Says:
Jan 19, 2012 - $part = str_ireplace('src="','src="'.$url,$part);This works use str_ireplace instead of ereg_replace!!!
Stormrage32 Says:
Jan 19, 2012 - $part = str_ireplace('src="','src="'.$url,$part);This works use str_ireplace instead of ereg_replace!!!
Stormrage32 Says:
Jan 19, 2012 - Use This: $part = str_ireplace('src="','src="'.$url,$part);
APineappleGuy Says:
Mar 8, 2012 - str_ireplace();
aeriqusyairi Says:
Mar 21, 2012 - Ok now use $part = str_ireplace('/images/',$url.'/images/' ,$part);until Google had decided to change their code again.LOL
madmatthew1 Says:
Apr 17, 2012 - you need to use str_replace($find, $replace, $str);
korkypnoy Says:
May 9, 2012 - I'm curious but how exactly can you use a proxy to do illegal things? I'm guessing it's stealing clicks from original websites?












Hyp3rThrust Says:
Aug 26, 2010 - Wow! Nice work mate! I love your work. You are really good at PHP and HTML.