I need to remove the brackets \"[\" and \"]\" from $widget_text in the variable value below and store the result in $widget_id.
$widget_text
$widget_id
$wi
If the brackets are always at first and last position, use this:
$widget_id = substr($widget_text, 1, strlen($widget_text)-2);
I think this is a faster way...