#4

Quote:

when i remove $_GET

Oh boy. $_GET is global array containing all data passed in url, like:
http://foo.bar?foo=bar&foobar=bar%20foo
Then you have
Quote:

array(
'foo' => 'bar',
'foobar' => 'bar foo',
);

So, if you see that index is undefined it means you have to pass the parameter via url, like:

http://localhost/script.php?ip=127.0.0.1&port=7777
Reply


Messages In This Thread
help - by God'Z War - 10.07.2013, 12:06
Re: help - by godkrad - 10.07.2013, 12:16
Re: help - by God'Z War - 10.07.2013, 12:27
Re: help - by Misiur - 10.07.2013, 12:40
Re: help - by God'Z War - 10.07.2013, 12:58
Re: help - by Misiur - 10.07.2013, 13:13

Forum Jump:


Users browsing this thread: 1 Guest(s)