The form fields are passed through CURL to the configured Raspberry Pi. Before passing the SMS text field, I process it by replacing spaces with %20.
The issue arises when the text contains accented letters such as à,è,ò,ì,ù (quite common in Italian). During the transfer, these letters were getting eliminated. To address this, I applied URL encoding to the text before sending and made some modifications to the send.php file you provided.
The form fields are passed through CURL to the configured Raspberry Pi. Before passing the SMS text field, I process it by replacing spaces with %20.
The issue arises when the text contains accented letters such as à,è,ò,ì,ù (quite common in Italian). During the transfer, these letters were getting eliminated. To address this, I applied URL encoding to the text before sending and made some modifications to the send.php file you provided.