ionicle Posted July 16, 2013 Share Posted July 16, 2013 I've got a list of IP ranges, each one on a new line, in the following format: x.x.x.x-x.x.x.x I would like to enclose each IP range within a <deny></deny> tag automatically. How would I go with that? Link to comment https://forums.phpfreaks.com/topic/280192-enclosing-an-ip-range-within-a-tag/ Share on other sites More sharing options...
kicken Posted July 16, 2013 Share Posted July 16, 2013 foreach ($ipRangeList as $range){ echo '<deny>'.$range.'</deny>'; } Link to comment https://forums.phpfreaks.com/topic/280192-enclosing-an-ip-range-within-a-tag/#findComment-1440906 Share on other sites More sharing options...
ionicle Posted July 16, 2013 Author Share Posted July 16, 2013 <?php // Open the file $fp = @fopen("koch.txt", 'r'); // Add each line to an array if ($fp) { $array = explode("\r\n", fread($fp, filesize("koch.txt"))); } foreach ($array as $range){ echo "<deny>".$range."</deny>"; } ?> It's not working. The two lines contain the following values: x.x.x.x x.x.x.x When I run the script, all I get is: "x.x.x.xx.x.x.x" ( the two values from the two lines glued together, with absolutely no "deny" tags ) What am I missing? Link to comment https://forums.phpfreaks.com/topic/280192-enclosing-an-ip-range-within-a-tag/#findComment-1440984 Share on other sites More sharing options...
requinix Posted July 17, 2013 Share Posted July 17, 2013 What am I missing?Do a View Source of the page. Link to comment https://forums.phpfreaks.com/topic/280192-enclosing-an-ip-range-within-a-tag/#findComment-1440994 Share on other sites More sharing options...
ionicle Posted July 17, 2013 Author Share Posted July 17, 2013 Gee... thank you. Had no idea <deny> was actually a valid HTML tag, I needed it for something else... Link to comment https://forums.phpfreaks.com/topic/280192-enclosing-an-ip-range-within-a-tag/#findComment-1441009 Share on other sites More sharing options...
requinix Posted July 17, 2013 Share Posted July 17, 2013 It's not. Doesn't have to be valid to be "hidden" from view. Link to comment https://forums.phpfreaks.com/topic/280192-enclosing-an-ip-range-within-a-tag/#findComment-1441010 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.