Convert to Uppercase

This public forum is for user-to-user discussions of PHPMaker. Note that this is not support forum.
Post Reply
justsimple
User
Posts: 17

Convert to Uppercase

Post by justsimple »

How do convert anything in company field to uppercase ?
make sure it will save as well in table so when i lookup that company from different table, it will show uppercase.



justsimple
User
Posts: 17

Post by justsimple »

yes it works but it won't save in table as uppercase.
so if I make a report, it will still shows as lowercase.


mobhar
User
Posts: 11718

Post by mobhar »

To save the uppercase value into Database while user adding new record, then you may simply use the following code in "Row_Inserting" server event:

$rsnew["YourFieldName"] = strtoupper($rsnew["YourFieldName"]);


Post Reply