Jump to content

File Get Help.


atlanta

Recommended Posts

Hi All,

 

Had a few questions.

 

ok what do you guys think of the best method for getting the file contents of a file and parsing it for a certain like of text and extracting it into a string heres an example..

 

<?php

/**
* @author 
* @copyright 2007
*/
if($_POST['site'])
{
$file = stripslashes($_POST['site']);
$getfile = file_get_contents($file);
echo $getfile;
}
else
{
?>

<form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post">
<input type="text" name="site">
<input type="submit" value="submit" ?>
</form>

<?
}
?>

 

Ok i want to parse $getfile for this line

mp.addVariable('file', 'http://www.domain.com/static/player/playlist.get.php%3Fid%3D5541%7CTS');

 

and put the filename which is in the second '' brackets into a variable.

 

Thanks

Link to comment
https://forums.phpfreaks.com/topic/83630-file-get-help/
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.