Toggle navigation
Dashboard
Dashboard Tracker
Add / Edit My Forums
System Announcements
Discussion
Active Thread Feed
Top Threads Today
Top Threads This Week
Top Threads Library
Go!
View All
View All
Login
Logout
Home
Forums Index
Server Side
/
PHP Server Side Scripting
5:12 pm May 21, 2026
This page requires javascript.
Forum Moderators:
coopster
Message Too Old, No Replies
Error Number: 1305 :FUNCTION strtoupper does not exist
strtoupper doesn't exist
calmseas
Msg#:4193595
11:01 pm on Aug 28, 2010
(gmt 0)
When I execute the following, I get a "Error Number: 1305 :FUNCTION ... strtoupper does not exist"
$query="UPDATE users SET last = strtoupper('last')" ;
Is not strtoupper a standard function?
Thanks in advance.
bhukkel
Msg#:4193653
5:51 am on Aug 29, 2010
(gmt 0)
strtoupper is php code in mysql it is upper (i assume you use mysql).
Anyango
Msg#:4193735
2:48 pm on Aug 29, 2010
(gmt 0)
try UCASE mysql function
rocknbil
Msg#:4193804
7:43 pm on Aug 29, 2010
(gmt 0)
This is a
mysql
error, not a PHP error. Since you haven't quoted the select statement, mysql is trying to interpret it as a command like
$query = "update table set dtfield=curdate()":
strtoupper is not a function in mysql. Try
$query="UPDATE users SET last = '" . strtoupper('last') . "'" ;
ucase (the mysql equivalent) will also work.
calmseas
Msg#:4194195
10:20 pm on Aug 30, 2010
(gmt 0)
Got it! Thanks to you all for your suggestions.
Join The Conversation
Register
For Free! -
Become a
Pro Member
!
See forum categories
-
Enter the Forum
Moderators and Top Contributors
Moderator List
| Top Contributors:
This Week
,
This Month
,
Apr
,
Mar
,
Archive
,
Top 100 All Time
,
Top Voted Members
Hot Threads This Week
May 2026 Google Search Observations
AdSense Earnings and Observations - May 2026
AI visibility audit
Adsense / Personal Manager / Support
Hacker spoofing as GoogleBot
Page indexed but live url test gets 500 error
Link collaboration strategies
in case you missed it .
Microsoft, AS8075. Google, AS396982.
Bad actor claiming to be OpenAi
Home
Forums Index
Server Side
/
PHP Server Side Scripting
5:12 pm May 21, 2026