Hey again...
If i have say $variable = "Hello!" how would i tell the script to delete any "!"'s it finds in the variable to make $variable2 = "Hello" ?
Another problem i'm having is after using the explode command to split a list on items up into single ones:
$item = explode('Þß',$items);
echo $item[0];
echo $item[1];
echo $item[2];
etc.
How would i have the number of seperate items were created by the explode?