10-11-2006, 11:42 AM
|
|
|
Too lazy to set a custom title
Join Date: Jul 2003
Location: Netherlands
Posts: 10,127
|
Quote:
Originally Posted by dissipate
$string = 'Chicken Cheese Waffles'; // or whatever the hell its stored in
strtolower($string); // makes it lowercase
$string = str_replace(" ", "-", $string); // replace spaces with -'s
|
correct answer
|
|
|