Hi,
I tried doing this through CSS, but because of an apparent bug in CSS, it doesn't convert the string when it originates as all caps. Strange, I know, but if the text entered is all lowercase or mixed case it works great, but when it's all uppercase, the text-transform: capitalize feature doesn't work.
Anyway, I'd like to try to get it done server-side, but I'm not a programmer and I don't want to mess something up. I was wondering if someone would be kind enough to look at the following code and let me know if there's a simple way to accomplish what I want.
Thanks for any suggestions!
I tried doing this through CSS, but because of an apparent bug in CSS, it doesn't convert the string when it originates as all caps. Strange, I know, but if the text entered is all lowercase or mixed case it works great, but when it's all uppercase, the text-transform: capitalize feature doesn't work.
Anyway, I'd like to try to get it done server-side, but I'm not a programmer and I don't want to mess something up. I was wondering if someone would be kind enough to look at the following code and let me know if there's a simple way to accomplish what I want.
Code:
sub Update {
my $default_permit_html = 0;
if($FORM{action} eq 'process_update') {
delete $FORM{action};
if($FORM{update_text} =~ /[a-zA-Z1-9]/) {
my $file = new MongerFile("$Data/defaultdata.ftf");
$file->unlink;
$file->write($FORM{update_text});
$WARN = "Update Complete. The new data will now be displayed on the live page.<br>You can view the updated page <a href=\"/home.shtml\" target=\"_blank\">here</a>.";
} else {
unlink("$Data/defaultdata.ftf");
$WARN = "Update Complete. Since your submission was blank,<BR>there is no data to display on the page, but you can view the page <a href=\"/home.shtml\" target=\"_blank\">here</a>.";
}
&Update;
} else {
my $file = new MongerFile("$Data/defaultdata.ftf");
&PrintAdminHead;
print "<CENTER><B>\n";
if($file->{exists}) {
print "This information was last updated:<BR>", $file->modified, ".</B><BR>\n";
}
Thanks for any suggestions!