GoFuckYourself.com - Adult Webmaster Forum

GoFuckYourself.com - Adult Webmaster Forum (https://gfy.com/index.php)
-   Fucking Around & Business Discussion (https://gfy.com/forumdisplay.php?f=26)
-   -   Quick php question. (https://gfy.com/showthread.php?t=510053)

mkx 08-30-2005 12:01 PM

Quick php question.
 
I need to echo the following from a form post but make it echo the variable in lowercase.

This does upper case:

<?php echo $_POST["cat1"]; ?>

What does lower case?


Thanks!

woj 08-30-2005 12:01 PM

<?php echo strtolower($_POST["cat1"]); ?>

mkx 08-30-2005 12:04 PM

i love you

Why 08-30-2005 01:13 PM

www.php.net and download the help .chm

Azlord 08-30-2005 01:17 PM

<?=strtolower($_POST["cat1"])?>

I like that better. the <?php echo strtolower($_POST["cat1"]); ?> for one line in between html looks look ugly.

psili 08-30-2005 01:27 PM

My way is much better:

Code:

<?php
$exp = explode($_POST["cat1"]);
$str = "";
for($i=0;$i<count($exp);$i++)
{
  $str = $str . strtolower($exp[$i]);
}
?>
<?=echo $str?>



All times are GMT -7. The time now is 02:04 PM.

Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc123