473,508 Members | 2,158 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

How to split lines in a textarea using php

1 New Member
In the thread http://www.thescripts.com/forum/thread11792.html this question was posed and while an answer was posted it wasn't explained at all why that worked. I thought I would post the answer in detail to help anyone else that searches for this. Read the original question and answer to get the context but I will cut to the reason.

The Reason the answer works and the other one doesn't

The \n is double quoted in the code that works. So 2 things were going wrong the doubled slash and the single quotes, I suspect that francescomoi@europe.com had tried single slash also (as I had).

So "\n" works to split on new lines where as '\n' doesn't.


The original question:


Hi.

I've got a textarea form and send a text via 'POST' to a PHP code:
-------------
data1
data2
data3
--------------

I use this piece of code:
-------------
$data = $_REQUEST["data"];
$data_array = split('\\n', $data);
------------

But it doesn't work. I tried also with '\n', '\r\n' and '\\r\\n'
without success.

Any suggestion? Regards.

The correct answer:

For some reason its working quite fine for me with this:

textarea.php:
-------------
<?php
$sent = $_REQUEST[sent];
if($sent == "yes") {
$data = $_REQUEST[data];
$data_array = split("\n", $data);
print_r($data_array);
} else {
echo "<form action='textarea.php' method='post'>";
echo "<textarea cols='10' rows='10' name='data'></textarea>";
echo "<input type='hidden' name='sent' value='yes'>";
echo "<input type='submit' value='Send'>";
echo "</form>";
}
?>
-------------

It produces this:

Array
(
[0] => data1
[1] => data2
[2] => data3
)
Jan 24 '08 #1
1 7911
Markus
6,050 Recognized Expert Expert
Is this a question...?

Or.. what?
Jan 24 '08 #2

Sign in to post your reply or Sign up for a free account.

Similar topics

18
3040
by: Piotr Wolski | last post by:
i read the filr into an array using file(). some of the lines are empty. i would like to output the file but ignoring the emnpty lines. any ideas?
3
1855
by: Robert | last post by:
Hello, Can anyone help with this code? I need to split a long piece of text from a textarea box into small chunks, then POST these chunks to my credit-card provider, whereupon he will POST...
3
7796
by: francescomoi | last post by:
Hi. I've got a textarea form and send a text via 'POST' to a PHP code: ------------- data1 data2 data3 -------------- I use this piece of code:
4
3591
by: Brian Glen Palicia | last post by:
My goal is to accept input from the user into a text box and then parse the data using split(). The first step is this tiny program to test the split() function. It runs in IE, but in Mozilla it...
3
1477
by: effendi | last post by:
Is there a way I can control the number of lines a user enters in a textarea? I like to allow user to enter let say 5 lines and no more than that. Thanks in advance.
3
9642
by: Ben | last post by:
Hi I am creating a dynamic function to return a two dimensional array from a delimeted string. The delimited string is like: field1...field2...field3... field1...field2...field3......
5
8688
by: Sen Haerens | last post by:
I'm using string.split(/^$/m, 2) on a curl output to separate header and body. There’s an empty line between them. ^$ doesn’t seem to work... Example curl output: HTTP/1.1 404 Not Found...
1
2633
by: nubster21 | last post by:
I would like to split a string of HTML output into an array on textarea tags. Example: <div>Hello this is my content <textarea>foo</textareaand this is also content <b>some bold...
2
3928
by: modelpatel | last post by:
Hi every one, I have a question regarding the lastline in Textarea. I am have build a chat application using the textarea to display the typed messages. Every thing is working fine except once the...
0
7225
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
7124
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
7326
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
7385
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
5629
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
1
5053
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
4707
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
1558
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
0
418
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.