http://www.gotwebsite.com/php/admin.php
Hello as you see from the page above. the results from my loop in PHP array in the proposal name break after every word. I need to be able to display a sentrence or paragraph . Can it be easily formatted in loop?? So it reads like this paragrah rather breaking after every word.
THANK YOU FOR RESPONSES!!!!!!!!!!!!!!
here is the code :
<table border="0" cellspacing="1" cellpadding="3" bgcolor="#000000">
<tr><th colspan=4 bgcolor="#ffffff"> </th><?php
// printing table header
reset($par_arr);
while(list($k, $v) = each($par_arr))
{
?><th bgcolor="#ffffff"><a href="admin.php?sort_by=<?php echo $v;?>"><?php echo $parameters_list[$v];?></a></th><?php
}
?></tr>
<?php
// printing table body
while($record = mysql_fetch_array($rst))
{
?>
<tr><td bgcolor="#ffffff">[<a href="admin.php?edit_id=<?php echo $record["id"]?>">Edit</a>]</td><td bgcolor="#ffffff">[<a href="javascript:del_confirm(<?php echo $record["id"]?>);">Delete</a>]</td><td bgcolor="#ffffff">[<a href="javascript:preview_proposal(<?php echo $record["id"]?>, 1);">View</a>]</td><td bgcolor="#ffffff">[<a href="javascript:preview_proposal(<?php echo $record["id"]?>);">Full View</a>]</td><?php
// printing table header
reset($par_arr);
while(list($k, $v) = each($par_arr))
{
?><td bgcolor="#ffffff"><?php echo ($record[$v]) ? $record[$v] : " ";?></td><?php
}
?></tr><?php
}
?>
</table>