Jump to content

add a space in a echo statement


kat35601

Recommended Posts

 I want to add a space after $item in the below statement so that there is more  space between the output of Item and Qty.
 
  echo "<tr><td>$Item </td>";
  echo "<td>$Qty</td></tr>";
 
example
 
245-01 1
345-97 17
212-11 3
 
would become
 
245-01   1
345-97   17
212-11   3

 

 

Thanks

 

 

Link to comment
https://forums.phpfreaks.com/topic/292267-add-a-space-in-a-echo-statement/
Share on other sites

As you know you can't have double spaces in html.  I suggest you use css to pad that cell.

 

While I agree that CSS is the appropriate solution, the statement above is not 100% accurate. You can use non-breaking consecutive spaces and they will all be rendered by the browser. As opposed to normal consecutive spaces that are rendered as a single space.

  • 1 month later...

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.