Can someone explain me about PHP and how do I make a PHP file? for printing something from an group shout to the output
Why this won't work tho...
------Php File---------------
1 | <?php |
2 | echo htmlspecialchars(file_get_contents( 'https://www.roblox.com/My/Groups.aspx?gid=2621674' )) |
3 | ?> |
------Another script [separate]---------
1 | local phpScript = game.HttpService:GetAsync( 'I need an site to get proxy links too.. would' ve help me a lot but I got from someone but it doesn 't seems to work.' ) |
2 | print (phpScript) |
And i'm getting errors both in Test and server test.
Telling me how to make the PHP script would've help me a lot! or explaining...
And also why it doesn't work.
I tested both your scripts using a local server connecting to localhost
and both work just fine, but I think what you want is a proxy.
What you can use is an already existing proxy such as this one. I haven't used any proxies before (in fact this is my first time using HttpService) but it appears to be very good.
I don't know much about HTTP service, but the problem seems like your string.
1 | --What you did: |
2 | local phpScript = game.HttpService:GetAsync( 'I need an site to get proxy links too.. would' ve help me a lot but I got from someone but it doesn 't seems to work.' ) |
3 | --What you should of done: |
4 | local phpScript = game.HttpService:GetAsync( "I need an site to get proxy links too.. would've help me a lot but I got from someone but it doesn't seems to work." ) |
Hope this helps