[PHP] A better way to do this in php???

2004-10-20 Thread bclem
I need to find the exact time of day using "minutes since midnight". What is the easiest and/or better way to do this in php? This is how I'm doing it now. // $iMinutes is the total number of minutes since midnight/12am // 0 = midnight/12am // 1439 = 11:59pm $iMinutes = 1230; if ($iMinutes < 0

[PHP] A question of style....

2004-10-05 Thread bclem
So I'm sitting here writing code and I'm thinking about my own style of writing and formatting my php code(I use a mix of the pear standard and my own flava). What else do you guy's use? What style should I base my code formatting on in order to be accepted widely by the php community at large?

[PHP] How do you guys validate your xml schema's with php?

2004-09-28 Thread bclem
Just curious to see how "everyone else does it" when it comes to validating your xml against an xsd file. Right now I'm fighting a problem where I don't have DOM installed that would enable me the ability to write my own validator and none of the online validators seem to want to play nice with p

[PHP] submit to a remote form without the use of curl?? Is it possible?

2004-09-27 Thread bclem
Is it possible with php to submit to a remote form without the use of curl? I am developing an application on a hosting server that does not have curl available and I need to submit some values to a remote form. Anybody ever do something like this without the use of curl? Thanks, Brent --

[PHP] php 5 rpm spec file?

2004-07-17 Thread bclem
I know this is a bit early to ask, but I thought I'd ask it anyway. Does anyone have an rpm spec file for php 5 yet? If I don't get any responses to this question, I'll build on and sent it to the list. Have a great night! -Brent -- PHP General Mailing List (http://www.php.net/) To unsubscr

[PHP] What do I need in order to do the following with php.

2004-06-30 Thread bclem
I want to make sure I'm correct in doing something. What do I need in order to perform the following: - Send an XML message to "something" at a website, have it load a database with the message, and return an acknowledgement. --