Re: [PHP-DB] Extracting the essence!

2002-04-18 Thread #Linux
show this /tr Regards Stan - Original Message - From: #Linux [EMAIL PROTECTED] To: [EMAIL PROTECTED]; Lisi [EMAIL PROTECTED] Sent: Sunday, April 14, 2002 11:24 PM Subject: Re: [PHP-DB] Extracting the essence! Tanks so far, but if I want don't want to display the 1st

Re: [PHP-DB] Extracting the essence!

2002-04-15 Thread Lisi
: Tanks so far, but if I want don't want to display the 1st and 4th line. - Original Message - From: Lisi [EMAIL PROTECTED] To: #Linux [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Sunday, April 14, 2002 10:55 PM Subject: Re: [PHP-DB] Extracting the essence! Try something like

[PHP-DB] Extracting the essence!

2002-04-14 Thread #Linux
Hi ppl! I want to strip html sites from the tags, only leaving the data from a table entity. The info i would like to insert into a mysql table. Have tried to use the following code with various $dokument variables, but it dont preform as expected. ?php $dokument =

Re: [PHP-DB] Extracting the essence!

2002-04-14 Thread Lisi
Try something like the following to extract the contents of the array by looping through it: $test= preg_replace ($search, $replace, $dokument); while (list ($key, $val) = each($test)) { echo $key = $val; } HTH -Lisi -- PHP Database Mailing List (http://www.php.net/) To

Re: [PHP-DB] Extracting the essence!

2002-04-14 Thread #Linux
Tanks so far, but if I want don't want to display the 1st and 4th line. - Original Message - From: Lisi [EMAIL PROTECTED] To: #Linux [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Sunday, April 14, 2002 10:55 PM Subject: Re: [PHP-DB] Extracting the essence! Try something like