Jump to content

PHP code src?


runestation

Recommended Posts

      <label><textarea name="currentxp">
      <?php
$name = $_POST['username'];
$filecontents = file_get_contents("http://hiscore.runescape.com/index_lite.ws?player=$name");
$stats = explode(',' , $filecontents);
$exp =  explode("\n", $stats[24]);
echo $exp[0]; //209351778
//echo print_r($stats);//dont need this
?>
        </textarea>     
</label>

Link to comment
https://forums.phpfreaks.com/topic/190310-php-code-src/#findComment-1004017
Share on other sites

but if it's not php code, and its only seen as text, won't the code not work?

 

I don't really understand what you are trying to accomplish. Do you want a text area to appear with the code in it, so others can see the source, or are you trying to get the text area to have the result of the code in it?

Link to comment
https://forums.phpfreaks.com/topic/190310-php-code-src/#findComment-1004026
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.