how would i go about removing proceeding, and trailing spaces from a variable? so say i had the variable $var = " this is a test "; how would i go about making it just: $var = "this is a test";
??
$var = trim ($var);
😃