#1

hi all
i am looking for a person who know php. i am getting some problem in my samp server signature . so i need help to fix

so if any one know php plz pm me


sorry for my bad english
Reply
#2

isn't it easier you tell what your problem is? So somebody can help you right here
Reply
#3

i got this error on serevr signature php


here is the code which showing error


Код:
$ip = $_GET["ip"];
$port = $_GET["port"];
error :

and i am using sampqueryapi

when i remove $_GET
on the error line like
Код:
$ip = "ip";
$port = "port";
that time i am getting error form sampqueryapi

error:
Reply
#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
#5

Misiur if i send u the script

can u fix it for me


plz
Reply
#6

I'm not helping outside forums for free. All you have to do is to open index.php?ip=XXX.XXX.XXX.XXX&port=7777
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)