Jump to content

[SOLVED] echoing informaiton in rows


contra10

Recommended Posts

i have in my table an echoed value that can be really long...thing is how do i limit the amount of words in a row. At the moment it is just echoed throughtout the table and forces the table to become longer

 

<?php
echo "<table border='1' align='right' width='600'>";
echo "<tr><td width='80%' valign='top' align='center'><FONT FACE='ariel' size'12'><h1><b>$evname</b></fOnt></td></tr>";
echo "<tr><td height='200' valign='top' align='left' width='300px'>$evdescription</td></tr>";
?>

Link to comment
Share on other sites

for some reason it didn't work

 

<?php
$text = ($evdescription);
$newtext = wordwrap($text, 20, "<br />\n");

echo "<table border='1' align='right' width='600'>";
echo "<tr><td width='80%' valign='top' align='center'><FONT FACE='ariel' size'12'><h1><b>$evname</b></fOnt></td></tr>";
echo "<tr><td height='200' valign='top' align='left' width='300px'>$newtext</td></tr>";
?>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.