php-db | 2004071
Date: 07/15/04
- Next message: John W. Holmes: "Re: [PHP-DB] Printing selected characters (strcnt?)"
- Previous message: Galbreath, Mark A: "RE: [PHP-DB] Printing selected characters (strcnt?)"
- In reply to: Vincent Jordan: "[PHP-DB] Printing selected characters (strcnt?)"
- Next in thread: John W. Holmes: "Re: [PHP-DB] Printing selected characters (strcnt?)"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
> $first_name = $_POST['first_name'];
> $last_name = $_POST['last_name'];
> $name = $first_name . ' ' . $last_name
> $rma = ?strcnt($last_name), 1 . Datetime(?) // takes the 1st character from
> $last_name and adds datetime in format of 715041200
$rma = substr ($last_name, 0 , 1).Your.Datetime;
-- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
- Next message: John W. Holmes: "Re: [PHP-DB] Printing selected characters (strcnt?)"
- Previous message: Galbreath, Mark A: "RE: [PHP-DB] Printing selected characters (strcnt?)"
- In reply to: Vincent Jordan: "[PHP-DB] Printing selected characters (strcnt?)"
- Next in thread: John W. Holmes: "Re: [PHP-DB] Printing selected characters (strcnt?)"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

