Welcome to the GoFuckYourself.com - Adult Webmaster Forum forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact us.

Post New Thread Reply

Register GFY Rules Calendar
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >
Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed.

 
Thread Tools
Old 12-10-2010, 11:11 AM   #1
96ukssob
So Fucking Banananananas
 
96ukssob's Avatar
 
Industry Role:
Join Date: Mar 2003
Location: If I was in your ass you'd know it
Posts: 12,991
Quick PHP Project for PayPal?

I need something built out pretty quick and annoyed that I just spent the last hour trying to figure it out and cant get it to work.

What I need is a text box to dump in a bunch of keywords, separated by line breaks.

When I hit "submit" it will then add find a space " " and replace it with a " +" (space plus sign). As well, it will add a plus sign "+" to the first word; since there is no space before that.

Here is a sample input:

banana hammock
tube sock
purple people peter eater
porn

The output would then be:

+banana +hammock
+tube +sock
+purple +people +peter +eater
+porn

__________________
Email: Clicky on Me
96ukssob is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 12-10-2010, 11:48 AM   #2
u-Bob
there's no $$$ in porn
 
u-Bob's Avatar
 
Industry Role:
Join Date: Jul 2005
Location: icq: 195./568.-230 (btw: not getting offline msgs)
Posts: 33,063
I was here
u-Bob is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 12-10-2010, 11:55 AM   #3
Kiopa_Matt
Confirmed User
 
Industry Role:
Join Date: Oct 2007
Posts: 1,448
Code:
$lines = explode("\n", $contents);
$new_content = implode("\n", array_map('format_line', $lines));

function format_line($line) {
     $line = '+' . preg_replace("/\s/", "\s+", $line);
     return $line;
}
Or something like that at least should work.
__________________
xMarkPro -- Ultimate Blog Network Management
Streamline your marketing operations. Centralize management of domains, pages, Wordpress blogs, sponsors, link codes, media items, sales and traffic statistics, plus more!

Last edited by Kiopa_Matt; 12-10-2010 at 11:57 AM..
Kiopa_Matt is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 12-10-2010, 11:58 AM   #4
96ukssob
So Fucking Banananananas
 
96ukssob's Avatar
 
Industry Role:
Join Date: Mar 2003
Location: If I was in your ass you'd know it
Posts: 12,991
Quote:
Originally Posted by u-Bob View Post
I was here
Thanks!! Your the man
__________________
Email: Clicky on Me
96ukssob is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 12-10-2010, 12:02 PM   #5
CamsMaster
Confirmed User
 
Join Date: Mar 2009
Posts: 1,200
Quote:
Originally Posted by Kiopa_Matt View Post
Code:
$lines = explode("\n", $contents);
$new_content = implode("\n", array_map('format_line', $lines));

function format_line($line) {
     $line = '+' . preg_replace("/\s/", "\s+", $line);
     return $line;
}
Or something like that at least should work.
CamsMaster is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Post New Thread Reply
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >

Bookmarks



Advertising inquiries - marketing at gfy dot com

Contact Admin - Advertise - GFY Rules - Top

©2000-, AI Media Network Inc



Powered by vBulletin
Copyright © 2000- Jelsoft Enterprises Limited.