473,387 Members | 1,476 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

TextArea formatting issue

I have a textarea that is populated from a blob within a database.
Everytime the data is pulled, however, there is always a lot of leading
space characters before the actual text. It is not in the database
this way, so how might I specify more formatting parameters within the
textarea?

Matt Williams

Jul 17 '05 #1
6 3131

"Matt" <md*******@radford.edu> wrote in message
news:11*********************@c13g2000cwb.googlegro ups.com...
I have a textarea that is populated from a blob within a database.
Everytime the data is pulled, however, there is always a lot of leading
space characters before the actual text. It is not in the database
this way, so how might I specify more formatting parameters within the
textarea?

Matt Williams


What I found was that I had a statement like....

echo ' blab blaob
'.$mytext.'
and so on'

and that spaces were added because of the line and perhaps also the
'invisible' extra space in the document on those lines after the code.

I changed it to

echo 'bla bla '.$mytext.' bla bla'

and this helped - but I am only a novice novice, so dont take it too
serious.
Jul 17 '05 #2
This would be my first suspicsion as well, but I entered my sample data
in the database by hand for testing purposes.......it has no extra
space appended to either sid of the text. I will try and draw what is
happening to my data
_______________________________________
| blahblahblahblahb | ^ |
|lahblahblahblahblahb | v |
----------------------------------------

Jul 17 '05 #3
Matt wrote:
This would be my first suspicsion as well, but I entered my sample data
in the database by hand for testing purposes.......it has no extra
space appended to either sid of the text. I will try and draw what is
happening to my data
_______________________________________
| blahblahblahblahb | ^ |
|lahblahblahblahblahb | v |
----------------------------------------


So where is the PHP code that you suspect is causing a problem?

NM

--
convert uppercase WORDS to single keystrokes to reply
Jul 17 '05 #4
Matt wrote:
I have a textarea that is populated from a blob within a database.
Everytime the data is pulled, however, there is always a lot of leading
space characters before the actual text. It is not in the database
this way, so how might I specify more formatting parameters within the
textarea?

Matt Williams

Make shure you put your text in the textarea as follows:
<textarea><?php print $content; ?></textarea>

and not
**<textarea>
***<?php
****print*$content;
***?>
**</textarea>

The second will produce spaces in front and at the end of $content;
--
Rutger Claes rg*@rgc.tld
Replace tld with top level domain of belgium to contact me pgp:0x3B7D6BD6
Do not reply to the from address. It's read by /dev/null and sa-learn only

Jul 17 '05 #5
Make shure you put your text in the textarea as follows:
<textarea><?php print $content; ?></textarea>

and not
**<textarea>
***<?php
****print*$content;
***?>
**</textarea>

The second will produce spaces in front and at the end of $content;


Not entirely, whitespace after ?> is removed.

and it should be:
echo htmlspecialchars($content);

to avoid problems with <> chars in text.

--
* html {redirect-to: url(http://browsehappy.pl);}
Jul 17 '05 #6
Excellent!!! This fixed the last my problems within this app. I put
the statements inline and everything looks perfectly formatted.....
Thanks

Matt Williams

Jul 17 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
by: bonehead | last post by:
I am using a php html form with data which is loaded from a mysql database. Three of the fields are textareas. The data loads into these fields fine, except that the loaded text starts at what...
5
by: Piotr Wolski | last post by:
how can i format textarea? f.e.: <textarea><b>i wqant this text to be bold</b></textarea>
6
by: TomT | last post by:
Hi, I've created a form that has a 3 fields. 2 textboxes (username & password) 1 TextArea (notes) I have linked this to an access DB. This is working well, the user enters thier Username...
3
by: Kent | last post by:
Hi all, Thank you in advance. Here is the issue: I need to create a page that allows users to copy the contents of a MS Word document and paste them into a textarea. All fine and dandy...but the...
10
by: Perry van Kuppeveld | last post by:
Hi, I have a problem with formatting a table including text fields wich can contain up to 255 chars. I need a table with 3 columns: - First column 50 % over the with a rowspan of the total...
2
by: Michael | last post by:
Question 1 ---------------- I am writing an advanced BBCode system for my forums and I would like to be able to find where the cursor was positioned last in the text so I could insert the BBCode...
6
by: Tony | last post by:
The w3schools HTML tag reference for <textarea> http://www.w3schools.com/tags/tag_textarea.asp says that the attributes 'cols' and 'rows' are REQUIRED attributes for the textarea tag. Looking at...
3
by: LoliPopas | last post by:
I'm stupid in Javascripting, but i making php forum with BBcode. and i need help with this: <head> <script> function formatSelected(from_obj, formatting, format2) { from_obj.focus (); ...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
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
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...

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.