Preserved Topic: Replace < stuff > with PHP (Page 1 of 1) |
|
---|---|
Maniac (V) Mad Scientist From: Rochester, New York, USA |
posted 11-06-2001 23:05 |
Maniac (V) Mad Scientist From: Belgrade, Serbia |
posted 11-06-2001 23:52
$string = preg_replace("/<(.+?)>/", "", $string); |
Paranoid (IV) Inmate From: Minneapolis, MN, USA |
posted 11-07-2001 00:37
$string = preg_replace("/<[^>]*>/", "", $string); |
Maniac (V) Mad Scientist From: Belgrade, Serbia |
posted 11-07-2001 00:50 |
Maniac (V) Mad Scientist From: Rochester, New York, USA |
posted 11-07-2001 03:08
Thanks all. |