On Fri, 2004-01-16 at 09:49, Tobias Engelhardt wrote:
> Hi list,
> 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!

What about just using the variable to build the name?

$file_name = 'order_'.$_GET['order_id'].'.html';

- Brad

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

Reply via email to