SA-MP Forums Archive
Php make button to click play sa-mp - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Other (https://sampforum.blast.hk/forumdisplay.php?fid=7)
+--- Forum: Everything and Nothing (https://sampforum.blast.hk/forumdisplay.php?fid=23)
+--- Thread: Php make button to click play sa-mp (/showthread.php?tid=604317)



Php make button to click play sa-mp - ScIrUsna - 03.04.2016

Hi,

How make with php a button or text where you click and then it redirect you to sa-mp with specify ip


Re: Php make button to click play sa-mp - Biesmen - 03.04.2016

samp://URL:PORT
For example your IP and port is 127.0.0.1 and 7777 with a simple anchor tag:

Код:
<a href="samp://127.0.0.1:7777">Click me</a>
Thumbs up!


Re: Php make button to click play sa-mp - GWMPT - 03.04.2016

PHP код:
<a href="samp://127.0.0.1:7777">CLICK HERE TO PLAY!</a
Too late... heh.


Re: Php make button to click play sa-mp - donB - 04.04.2016

I understand, he is looking for a PHP code.

That would be:
PHP код:
<?php echo "<a href='samp://IP:Port'>SA-MP Server</a>"?>