Hi,
I started a month ago with Scriptcase. One issue I can hardly solve: An absolute tab instead of " = ".
A button in PHP code runs in a grid for selected entries to confirm by e-mail.
Does a way to handle exist yet? Maybe a HTML part of coding? Any experience in this area would help.
The message, of type HTML, starts like this:
$mail_message = {lang_Global_fld_ShowName}." = “.$ShowName.”<br>";
$mail_message = $mail_message.{lang_Global_fld_ShowLocation}." = “.$ShowLocation.”<br>";
$mail_message = $mail_message.{lang_Global_fld_ShowAddress}." = “.$ShowAddress.”<br>";
$mail_message = $mail_message.{lang_Global_fld_Organization}." = “.$Organization.”<br>";
$mail_message = $mail_message.{lang_Global_fld_Website}." = “.$Website.”<br><br>";
Note: The following code to combine lines happened to be unstable:
$mail_message .= {lang_Global_fld_ShowLocation}." = “.$ShowLocation.”<br>";
For some lines the breaks in the output missed. Later on I could not reproduce.
Maybe it happened because of message type text and the other instructions for carriage return.
Regards
Jan Willem