top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

In php how to make string as captial?

0 votes
232 views
In php how to make string as captial?
posted Sep 3, 2014 by anonymous

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

use strtoupper function

example
$smallvar = "tag";
$capvar = strtoupper($smallvar);
answer Sep 3, 2014 by Salil Agrawal
Similar Questions
0 votes

To get html pages to use php scripts, I've used:

RewriteEngine on
# handler for phpsuexec. -- this makes these prefixes considered for php

SetHandler application/x-httpd-php

In a .htaccess file.
However, it works on one site, but not on another -- any ideas as to why?

...