Hi Everyone, I am trying to add a php post variable to one of my output error messages.
The working error message is this -
registerError( $hint, $hint, $error_title, ' + sign not required. International dialing code not required' );
What I would like to do is to display the International Dialing Code in the error message, like +44 is not required.
I have tried
registerError( $hint, $hint, $error_title, ' "' . $dialingCode . '" sign not required. International dialing code not required' );
And Also
registerError( $hint, $hint, $error_title, ' ' . $dialingCode . ' sign not required. International dialing code not required' );
As well as
registerError( $hint, $hint, $error_title, ' $dialingCode sign not required. International dialing code not required' );
But all that is displayed is an empty space, What is it I am doing wrong...
Thanks in advance...