>i hope someone can help me out... i have to replace
>
><a href="order.php?order_id=12345">
>with
><a href="order_12345.html">
>
>any ideas? thank you!

PCRE style:
'/<a href="order.php\?order_id=(\d+)">/'
replaced by '<a href="order_$1.html">'.

---------------------------------------------------------------------
michal migurski- contact info and pgp key:
sf/ca            http://mike.teczno.com/contact.html

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to