Re: [PHP-DB] Need help with time calculation for a tracking system - it DOES involve DB work :)

2002-10-05 Thread Jason Wong
On Saturday 05 October 2002 03:45, Aaron Wolski wrote: > Anyway.. everything as far as entering the time values, etc is working > correctly except the calculation is NOT working as it should!!! > $timeValue = date("g:i:s", $timeDifference); > When I echo everything out to the browser this is wh

[PHP-DB] Some data manipulation

2002-10-05 Thread Hatem Ben
hey all i have a database of arrays like this : Array ( [0] => 2- [1] => 8b2 [2] => 8#c3 [3] => 8b2 [4] => 8#f2 [5] => 4a2 [6] => 8a1 [7] => 8a2 [8] => 4a2 [9] => 4a2 [10] => 4a2 ) i just need to change in every string the last value when it is eq

[PHP-DB] $_POST And $_REQUEST

2002-10-05 Thread Shoulder to Shoulder Farm
Hi all, What is the difference between the $_POST and $_REQUEST functions (I can't find it in the docs)? Thanks, Taj -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DB] $_POST And $_REQUEST

2002-10-05 Thread Hatem Ben
$_REQUEST is an associative array consisting of the contents of $_GET, $_POST, $_COOKIE, and $_FILES http://www.php.net/manual/en/reserved.variables.php - Original Message - From: "Shoulder to Shoulder Farm" <[EMAIL PROTECTED]> To: "PHP Database List" <[EMAIL PROTECTED]> Sent: Sunday, O

Re: [PHP-DB] Some data manipulation

2002-10-05 Thread Rasmus Lerdorf
So loop through and check the last char. Am I missing something that makes this harder than the obvious: foreach($arr as $key=>$val) { $end = $val[strlen($val)-1]; switch($end) { case '1': $arr[$key] = substr($val,0,-1); break; case '2': case '3': $arr[$key] = su