ListMailPRO Email Marketing Software Forums

ListMailPRO Email Marketing Software Forums => General Help & How-To => Topic started by: BoomPop on November 14, 2005, 11:14:13 pm

Title: Capitalize all letters in FNAME & LNAME?
Post by: BoomPop on November 14, 2005, 11:14:13 pm
Hiya Dean!

I've seen this covered on the forum, but only to a small degree.  I need to capitalize EVERY letter of the fname, lname, and user1 fields *before* they are written to the database.  I know it could be done with javascript, but you know me... PHP is the only way to go if I want 100% consistent results.

I know this will require a simple use of strtoupper but I'm not sure how or where to shove it.  LOL!
Title: Capitalize all letters in FNAME & LNAME?
Post by: DW on November 15, 2005, 07:45:51 am
Set up a file signup-xtra.php in your main ListMail folder containing the following (example for list 1):

Code: [Select]
<?phpif($list=='1'){ mysql_query("update lm_users set fname = '".strtoupper($fname)."', lname = '".strtoupper($lname)."' where uid = '$uid'");}?>

Please note there are some improvements to signup-xtra in the upcoming update.  Notably, the welcome message is processed AFTER signup-xtra.php as it should be...

Regards