# PHP\_noobie problem?

**URL:** https://forum.kirupa.com/t/php-noobie-problem/67569
**Category:** Uncategorized
**Created:** [October 17, 2004, 6:09pm UTC](https://forum.kirupa.com/t/php-noobie-problem/67569 "2004-10-17T18:09:03Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![PsychoSpike](https://avatars.discourse-cdn.com/v4/letter/p/e19b73/32.png) [@PsychoSpike](https://forum.kirupa.com/u/PsychoSpike)
#### Post date: [October 17, 2004, 6:09pm UTC](https://forum.kirupa.com/t/php-noobie-problem/67569/1 "2004-10-17T18:09:03Z")

</div>

plz see what i cooked up: [http://www.dreamx3me.be/test](http://www.dreamx3me.be/test)

the textarea is defined by the color behind it: this color is set with the textfield.background… so therefore the color should show the textarea borders,

when i alter the php code to show last news descending for example 2 rows i get two rows, but the string goes out of the textarea borders on the second item???

somehow i must have done something horribly wrong? maybe it is characters " like ’ and such in my text?

the text is just one textbox, and everything that gets fed into the textbox goes through the php, one time, so i find it very strange that the textbox has’nt got a problem with the first item…

the text gets fed into a dynamically generated textbox, which has (should?) have an embedded font, and html encoded text enabled…

```php
<?php
mysql_connect("localhost","username","password");
mysql_select_db("dreamx3me");
$sql = mysql_query("SELECT * FROM `nieuws` ORDER BY `id` DESC LIMIT 0 , 2");

while($row=mysql_fetch_array($sql)){
	$output= "<u>".$row["date"].": </u><br>subject: ".$row["onderwerp"]."<br>"."--->".$row["bericht"]."<br> _________________"."<br><br>";
	echo $output;
}
?>

```

Plz help me, i’m going MAD…
