atlanta Posted December 29, 2007 Share Posted December 29, 2007 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 More sharing options...
atlanta Posted December 29, 2007 Author Share Posted December 29, 2007 I know you can use a preg_match line but not sure on how to do it. any preg coders? Link to comment https://forums.phpfreaks.com/topic/83630-file-get-help/#findComment-425432 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.