Ravens PHP Scripts: Forums
 

 

View next topic
View previous topic
Post new topic   Reply to topic    Ravens PHP Scripts And Web Hosting Forum Index -> PHP
Author Message
BohrMe
Hangin' Around



Joined: May 01, 2004
Posts: 28
Location: Fall River, MA

PostPosted: Mon Jan 31, 2005 7:07 pm Reply with quote

Does anyone know how to display blanks spaces without the use &nbsp; or tables? What's perfect is surrounding my text (including <a ..> and <img ..> tags) with <pre></pre> tags but that's not HTML 4.01 compliant.

The number of blank spaces will be variable based on the length of a file name (for example).

"file.name (n-number of spaces) description, et al"

Thanks.

_________________
BohrMe
eSnider.net 
View user's profile Send private message Visit poster's website
sixonetonoffun
Spouse Contemplates Divorce



Joined: Jan 02, 2003
Posts: 2496

PostPosted: Mon Jan 31, 2005 7:22 pm Reply with quote

I don't follow exactly what you mean there but why not use <br /> after the tags
or use nl2br() both?

_________________
[b][size=5]openSUSE 11.4-x86 | Linux 2.6.37.1-1.2desktop i686 | KDE: 4.6.41>=4.7 | XFCE 4.8 | AMD Athlon(tm) XP 3000+ | MSI K7N2 Delta-L | 3GB Black Diamond DDR
| GeForce 6200@433Mhz 512MB | Xorg 1.9.3 | NVIDIA 270.30[/size:2b8 
View user's profile Send private message
BohrMe







PostPosted: Mon Jan 31, 2005 7:49 pm Reply with quote

I suppose this is more of an html question than anything. If I know the proper html code I can code my php function.

If you create a little html file that contains the following line:
Code:
<pre>  <a href="http://alink.whatever">asdf</a>                    something</pre>

it will print the blanks spaces after "asdf". However, this is not HTML 4.01 compliant since the <a ..> tag is located within the <pre>..</pre> tags.

I need to be able to have a browser display the blanks but I don't want to display the messy &nbsp; stuff or use tables.

I hope I explained that a little better.

Thanks.
 
sixonetonoffun







PostPosted: Mon Jan 31, 2005 8:24 pm Reply with quote

I see well like in a comment for instance if you save it to the DB and then use $comment = nl2br($comment);
echo "$comment";
before you echo or print it out to the browser it will preserve the formating as far as the spaces and line returns go. (Something like <pre would.
 
BohrMe







PostPosted: Mon Jan 31, 2005 8:52 pm Reply with quote

That doesn't do what I want. I tested it using the following code:
Code:
<?php


$testtest = "this has              blanks      .\n";
$testtest = nl2br( $testtest );

echo $testtest;

?>

and it produced this in the browser:
Code:
this has blanks .


The <pre> tag preserves the blanks in between the words and displays them in the browser. I need the blanks to be displayed in the browser like this:
Code:
this has              blanks      .
 
sixonetonoffun







PostPosted: Mon Jan 31, 2005 9:42 pm Reply with quote

Yeah I don't see any way around using &nbsp; if the output is html.
$text=str_replace(" ", "&nbsp;", $text);
Only registered users can see links on this board! Get registered or login! ?
 
BohrMe







PostPosted: Mon Jan 31, 2005 10:10 pm Reply with quote

I'll use it but it makes the html messy. Oh well. Thanks for the input. It always helps to bounce ideas off others.

My spacer function I wrote for spacing text on a line:
Code:
function spacer ( $f_length ) {

   $test_space = 40 - $f_length;
   for ( $i = 1; $i <= $test_space; $i++) {
      $space_man .= "&nbsp;";
   }
   return $space_man;
}

$f_length is the number of characters in the file name returned by strlen() in the calling function and 40 is the character position I want the next text to start.
 
sixonetonoffun







PostPosted: Mon Jan 31, 2005 10:16 pm Reply with quote

Thats really nice I can think of a lot of sloppy forms that would benefit from something like that.

::: Looks around to make sure no one is pointing finger this way:::
 
BohrMe







PostPosted: Mon Jan 31, 2005 10:22 pm Reply with quote

Ha ha ha! Thanks.
Smile
 
Display posts from previous:       
Post new topic   Reply to topic    Ravens PHP Scripts And Web Hosting Forum Index -> PHP

View next topic
View previous topic
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You can attach files in this forum
You can download files in this forum


Powered by phpBB © 2001-2007 phpBB Group
All times are GMT - 6 Hours
 
Forums ©