View Single Post
Old 02-24-2010, 07:47 PM  
nation-x
Confirmed User
 
nation-x's Avatar
 
Industry Role:
Join Date: Mar 2004
Location: Rock Hill, SC
Posts: 5,370
I made you an example...

http://lifestyleamateurs.com/test.php

this is the php script I am posting to.

Code:
<?php

$galleries = preg_split("/\r?\n|\r/", $_POST['textarea']);

foreach($galleries as $gallery) {
	list($url, $description) = explode('|', $gallery);
	echo "<a href='{$url}'>{$description}</a><br>\n";
}
?>
nation-x is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote