> I have a variable(s) that hold the string:
> "name"
> and I'd like to kill the quotes so it contains:
> name
> I am aware of the strlen() function but can find the concant

$newVar = eregi_replace( "\"", "", $varWithAboveData );

Chris

Reply via email to