Menu

#42 Allow TXT records greater than 255 caracteres

v1.0 (example)
open
nobody
None
5
2014-07-05
2014-07-05
No

Allow TXT records greater than 255 caracteres

Update the DB size to char(1020)

 elseif($record[3] == "TXT") {
                        $destination = "";
                        foreach (str_split($record[5],255) as $subtxt) {
                                $destination = $destination . ",\n\t\t\t\t\t\"" . $subtxt . "\"";
                        }
                        $destination = "(" . substr($destination,7) . ")";
                }

Discussion


Log in to post a comment.