I did the mktime on my script using my way and your way and they're both pretty much the same.
For my way I get "0.00130414962769" seconds
For your way I get "0.00123000144958" seconds
I'll use your way since it looks more complex.
I have anoher offtopic question
How can I pass a variable to a script without loading the script I'm sending it to?
Instead of doing this...
Code:
<form action='somescript.php' method='post>
Then on somescript.php I would use $_POST['var']
But I would like to send $_POST['var'] to somescript.php with the browser redirecting to somescript.php?
I know it sounds weird but I may have an use for it.