Re: [PHP] Dates before 1970

2006-04-13 Thread chris smith
> I have a project that deals with the date time stamps since 1900 (and > past), any suggestions about a good class that handles Date Time > Format before 1970. I really like date() function and want something > similar. If you're using a database at all, most of them will handle any sort of dates

Re: [PHP] Sessions Issues With 2 Instances On Same Server

2006-04-13 Thread chris smith
On 4/14/06, Mark Sargent <[EMAIL PROTECTED]> wrote: > Hi All, > > I'm looking at OSCommerce, and have been asked if running 2 instances on > the same server would be doable. I only foresee perhaps issues with > sessions. Has anyone got any thoughts on this? I'd be very appreciative > of any help wi

Re: [PHP] Dates before 1970

2006-04-13 Thread Suhas
This will definitely solve one way but still other is there, How to get that -ve number which starts at 1/1/1900 at 00:00 AM = 0 I need to be able to convert back and forth as there are some calculations to be done on date field, But this is very interesting.. Thx SP On 4/13/06, Rasmus Lerdorf <

Re: [PHP] Dates before 1970

2006-04-13 Thread Rasmus Lerdorf
Suhas wrote: Hello, I have a project that deals with the date time stamps since 1900 (and past), any suggestions about a good class that handles Date Time Format before 1970. I really like date() function and want something similar. date() uses Unix timestamps which on most Unix platforms goes

Re: [PHP] PHP Post & forms

2006-04-13 Thread Stephen Johnson
On 4/13/06 7:40 PM, "Gary E. Terry" <[EMAIL PROTECTED]> wrote: > Quite possibly a stupid question, but here goes. > > I have a form that is a list of jobs. On that list is a > checkbox. The form field is named 'changedate'. > > I also have a hidden field called 'JobID'. > > What I am trying

[PHP] PHP Post & forms

2006-04-13 Thread Gary E. Terry
Quite possibly a stupid question, but here goes. I have a form that is a list of jobs. On that list is a checkbox. The form field is named 'changedate'. I also have a hidden field called 'JobID'. What I am trying to accomplish is if a checkbox is checked, when the form is submitted, I want a

[PHP] Sessions Issues With 2 Instances On Same Server

2006-04-13 Thread Mark Sargent
Hi All, I'm looking at OSCommerce, and have been asked if running 2 instances on the same server would be doable. I only foresee perhaps issues with sessions. Has anyone got any thoughts on this? I'd be very appreciative of any help with this. I have installed already 2 instances on a test ma

Re: [PHP] Text database instead of MySql (Recommendations / Advise also welcome)

2006-04-13 Thread Ryan A
Hey, > You're in for a rough ride...Yep, sure looks like it. --- Quadruple all your time estimates, and start by defining EXACTLY what your app has to do, and EXACTLY how much data needs to from A to B to C.---Wise words, have already done most of that, it was very tempting to sta

[PHP] Dates before 1970

2006-04-13 Thread Suhas
Hello, I have a project that deals with the date time stamps since 1900 (and past), any suggestions about a good class that handles Date Time Format before 1970. I really like date() function and want something similar. Thanks in advance! SP -- PHP General Mailing List (http://www.php.net/) To u

Re: [PHP] serialize() function

2006-04-13 Thread Richard K Miller
There's nothing special about the data returned by serialize() except that it can be safely written saved, transmitted, etc. To do anything useful with it you have to unserialize() it. The cool part about it is that you can serialize any data structure, like an entire array or object. T

Re: [PHP] Sessions and Frames

2006-04-13 Thread Richard Lynch
On Wed, April 5, 2006 1:02 pm, Shaun wrote: > I have a site that uses frames. The frameset loads another site (both > on the > same server) in the lower frame window. Every time the page changes in > the > lower frame the session id changes, how can I stop this happening? A) Don't use frames. The

RE: [PHP] Failed MySQL queries

2006-04-13 Thread Richard Lynch
On Wed, April 5, 2006 1:54 pm, Jim Moseby wrote: >> Rather than using the following, which simply displays a >> white screen with >> the die message, is there a way to add the die message to the >> body of the >> original form page, such as in a variable, so that I can >> display the message >> on

Re: [PHP] serialize() function

2006-04-13 Thread Richard Lynch
On Thu, April 13, 2006 7:03 pm, Jochem Maas wrote: >> One example, each domain has a limit of cookies (20) and you can use > > I wasn't aware that there was a hard limit on cookies - I always > thought > this was a browser dependent setting ... not that I ever get above > 2 cookies max (and mostly

Re: [PHP] Text database instead of MySql (Recommendations / Advise also welcome)

2006-04-13 Thread Richard Lynch
On Thu, April 13, 2006 7:37 pm, Ryan A wrote: > Hey, > > > A text db is never going to be as fast as a relational db. > > > I know ...but I have no choice, no MySql or any other database > installed on > the server. > > >> Why can't you use a database (I assume there was some sort of >> technical

Re: [PHP] Text database instead of MySql (Recommendations / Advise also welcome)

2006-04-13 Thread Ryan A
Hey, > quantify 'high traffic'. Millions of hits per day, hundreds if not thousands of GBs transferred _per day_ sounds like high traffic? :-D --- you might consider telling the client that the implementation of a high traffic site should not be constrained from the outset by s

Re: [PHP] Text database instead of MySql (Recommendations / Advise also welcome)

2006-04-13 Thread Richard Lynch
http://php.net/sqllite I dunno how well it will do with "high traffic" though... But at least it will work the same as the MySQL you are familiar with, for the most part. It's the same idea as what you are looking at now, but already built into PHP and ready to rock and roll. :-) You might just

Re: [PHP] serialize() function

2006-04-13 Thread Jochem Maas
Robert Cummings wrote: On Thu, 2006-04-13 at 18:58, tedd wrote: Not that you don't know -- because I'm sure you do -- but for the benefit of others. One example, each domain has a limit of cookies (20) and you can use them up pretty quickly. However, if you place your data in an array, you

Re: Re[2]: [PHP] Problems creating images

2006-04-13 Thread Richard Lynch
On Thu, April 6, 2006 5:24 pm, Tom Rogers wrote: > put > > error_reporting( E_ALL); > > at the top of the script and see if any error messages show up. > The fact that the mime type is text seems to indicate some output has > gone to > the client before your header call. That could be any white spa

Re: [PHP] Text database instead of MySql (Recommendations / Advise also welcome)

2006-04-13 Thread Jochem Maas
Ryan A wrote: Hey, I have been asked to make a site that would be pretty high traffic... quantify 'high traffic'. problem is, no MySql. you might consider telling the client that the implementation of a high traffic site should not be constrained from the outset by something as petty as My

Re: [PHP] serialize() function

2006-04-13 Thread Robert Cummings
On Thu, 2006-04-13 at 18:58, tedd wrote: > Not that you don't know -- because I'm sure you do -- but for the > benefit of others. > > One example, each domain has a limit of cookies (20) and you can use > them up pretty quickly. However, if you place your data in an array, > you could then seri

Re: [PHP] Text database instead of MySql (Recommendations / Advise also welcome)

2006-04-13 Thread Ryan A
Hey, > A text db is never going to be as fast as a relational db. I know ...but I have no choice, no MySql or any other database installed on the server. > Why can't you use a database (I assume there was some sort of technical reason) ? Load / resources basically, its a bunch of load balanc

Re: [PHP] Beginner Help - Array

2006-04-13 Thread chris smith
On 4/14/06, P. Guethlein <[EMAIL PROTECTED]> wrote: > This seems like it should work, but the option statement is just > filling in one line of datahm... the names have multiple > territories (ID's), so I want to have one name associated with one > territory ID ( other stuff happens elsewa

Re: [PHP] Problems creating images

2006-04-13 Thread Richard Lynch
On Wed, April 5, 2006 2:42 pm, Age Bosma wrote: > *confirm_image.php:* Your browser and webserver "see" confirm_image.php in the URL. > Header("Content-type: image/jpeg"); REAL browsers like Mozilla and Firefox etc trust this. Microsoft, however, in its infinite wisdom, ignores standards-

Re: [PHP] interview

2006-04-13 Thread Jochem Maas
Richard Lynch wrote: On Thu, April 13, 2006 2:25 pm, Jochem Maas wrote: Anthony Ettinger wrote: if PHP could PHP a PHP page, how much PHP would a PHP page take to PHP a PHP page? One line: heh Richard, now your just showing off ;-) -- PHP General Mailing List (http://www.php.net/) To

Re: [PHP] serialize() function

2006-04-13 Thread Jochem Maas
tedd wrote: At 12:04 AM +0200 4/14/06, Jochem Maas wrote: Nicholas Couloute wrote: Are there any tutorials and uses for serialize() ? I went to php.net and it isn't well documented as I would hope! $o,"B"=>$a,"C"=>$i,"D"=>$b)),"\n", ?> ... and yes there are uses for it. what do you want

Re: [PHP] Text database instead of MySql (Recommendations / Advise also welcome)

2006-04-13 Thread chris smith
On 4/14/06, Ryan A <[EMAIL PROTECTED]> wrote: > Hey, > > I have been asked to make a site that would be pretty high traffic... > problem is, no MySql. > > Although i have messed around with php's file and directory commands I have > never really made anything "really big" using them, I always used

[PHP] Text database instead of MySql (Recommendations / Advise also welcome)

2006-04-13 Thread Ryan A
Hey, I have been asked to make a site that would be pretty high traffic... problem is, no MySql. Although i have messed around with php's file and directory commands I have never really made anything "really big" using them, I always used MySql, here I dont have that choice as the server itself d

Re: [PHP] serialize() function

2006-04-13 Thread tedd
At 12:04 AM +0200 4/14/06, Jochem Maas wrote: Nicholas Couloute wrote: Are there any tutorials and uses for serialize() ? I went to php.net and it isn't well documented as I would hope! $o,"B"=>$a,"C"=>$i,"D"=>$b)),"\n", ?> ... and yes there are uses for it. what do you want to do? Jochem:

Re: [PHP] Join - Two Columns with the same name

2006-04-13 Thread Warren Vail
Several methods are supported by mysql, here is the one I like, select * from table1 a, table2 b where a.col1 = b.col1 In this case the a and b are "aliases" of table1 and table2 respectively and the notation a.col1 and b.col1 refers to column "col1" in table1 and table2 respectively. You can

Re: [PHP] CURLOPT_BINARYTRANSFER [SOLVED]

2006-04-13 Thread Richard Lynch
On Tue, April 11, 2006 3:56 pm, Richard Lynch wrote: First, I want to publicly THANK Pierre and Tony2001 for squashing not one, but *TWO* bugs I managed to stumble across in my latest endeavor. Their patience with my bumbling through bogus hypotheses and red herrings in my bug reports should be s

Re: [PHP] Join - Two Columns with the same name

2006-04-13 Thread Jochem Maas
Kevin Murphy wrote: This is probably basic, but I can't seem to find the answer. Is there a way to specify in a join a specific column when the two tables have columns with the same name? Something like: $row['table1.id'] vs $row['table2.id'] yes. http://dev.mysql.com/doc/ is a good plac

Re: [PHP] interview

2006-04-13 Thread Richard Lynch
On Thu, April 13, 2006 2:25 pm, Jochem Maas wrote: > Anthony Ettinger wrote: >> if PHP could PHP a PHP page, how much PHP would a PHP page take to >> PHP >> a PHP page? One line: -- Like Music? http://l-i-e.com/artists.htm -- PHP General Mailing List (http://www.php.net/) To unsubscribe, vis

Re: [PHP] interview

2006-04-13 Thread Richard Lynch
On Thu, April 13, 2006 10:21 am, Mad Unix wrote: > can you please send some interview questions for php > i have in few days to inteview some people. > > -- > madunix > Communications Engineering (RWTH Aachen University) > Systems and Network Engineer > MCSE, IBM AIX System Specialist, CCNP, CCSP(S

[PHP] Join - Two Columns with the same name

2006-04-13 Thread Kevin Murphy
This is probably basic, but I can't seem to find the answer. Is there a way to specify in a join a specific column when the two tables have columns with the same name? Something like: $row['table1.id'] vs $row['table2.id'] -- Kevin Murphy Webmaster: Information and Marketing Services Wester

Re: [PHP] how should MS Access DATETIME be handled in PHP?

2006-04-13 Thread Richard Lynch
On Thu, April 13, 2006 9:30 am, Bing Du wrote: > $qry = odbtp_query("SELECT end_date,title,projectID FROM projects > ORDER > BY end_date DESC"); While all the data-munging in PHP is very interesting... Might I suggest that you just use MySQL's date_format() function to ask MySQL to give you the

Re: [PHP] interview

2006-04-13 Thread Richard Lynch
On Thu, April 13, 2006 2:46 pm, John Nichel wrote: > Chrome wrote: >> [snip] >> How would you like it if someone who didn't have a clue as to your >> expertise, interviewed you and then judged you as to what you know? >> [/snip] >> >> Like upper management? ;) >> > > *ding ding ding* > > We have a

Re: [PHP] serialize() function

2006-04-13 Thread Jochem Maas
Nicholas Couloute wrote: I was thinking of a news system with comments. fine. but what's that got to do with serialize() per se? or put another don't look at a function decide it might be useful and then force yourself to build an application with it cart before the horse and all that.

Re: [PHP] serialize() function

2006-04-13 Thread Jochem Maas
Nicholas Couloute wrote: Are there any tutorials and uses for serialize() ? I went to php.net and it isn't well documented as I would hope! $o,"B"=>$a,"C"=>$i,"D"=>$b)),"\n", ?> ... and yes there are uses for it. what do you want to do? ~Nick Couloute co-owner/Web Designer Sidekick2Music.

[PHP] serialize() function

2006-04-13 Thread Nicholas Couloute
Are there any tutorials and uses for serialize() ? I went to php.net and it isn't well documented as I would hope! ~Nick Couloute co-owner/Web Designer Sidekick2Music.Com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Beginner Help - Array

2006-04-13 Thread P. Guethlein
This seems like it should work, but the option statement is just filling in one line of datahm... the names have multiple territories (ID's), so I want to have one name associated with one territory ID ( other stuff happens elseware...). //building list of names and their territory ma

[PHP] Re: interview

2006-04-13 Thread Ahmed Saad
On 4/13/06, Mad Unix <[EMAIL PROTECTED]> wrote: > can you please send some interview questions for php > i have in few days to inteview some people. Well, a simple google search could have saved you all this http://www.google.com/search?q=php+interview+questions and do NOT try PHP at home! I

RE: [PHP] how should MS Access DATETIME be handled in PHP?

2006-04-13 Thread Bing Du
> I expect there's actually several ways, although I'm thinking it's likely > that none of them is blindingly obvious. Personally, I think I'd be > inclined to do it like this: > >$mth = 9; >echo date('F', mktime(12,0,0, $mth)); > Interesting. Thanks a bunch for the tip, Mike. Appreciat

Re: [PHP] interview

2006-04-13 Thread John Nichel
Chrome wrote: [snip] How would you like it if someone who didn't have a clue as to your expertise, interviewed you and then judged you as to what you know? [/snip] Like upper management? ;) *ding ding ding* We have a winner! I love the 'deer in headlights' look our CEO gets when I explain t

RE: [PHP] interview

2006-04-13 Thread Chrome
for a company like that, I would be looking for another position. tedd -- http://sperling.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] interview

2006-04-13 Thread Jochem Maas
Anthony Ettinger wrote: if PHP could PHP a PHP page, how much PHP would a PHP page take to PHP a PHP page? dunno. but it's sounds like a Pretty Hard Problem to solve. :-) I just envisaging the guy to be interviewed reading this list right now ... we should run a sweepstake on whether he bothers

Re: [PHP] interview

2006-04-13 Thread Anthony Ettinger
if PHP could PHP a PHP page, how much PHP would a PHP page take to PHP a PHP page? On 4/13/06, Ryan A <[EMAIL PROTECTED]> wrote: > If a coal cart could cart coal, how much coal would a coal cart cart... if a > coal cart could cart coal? > > -- > PHP General Mailing List (http://www.php.net/) > T

RE: [PHP] interview

2006-04-13 Thread Ryan A
If a coal cart could cart coal, how much coal would a coal cart cart... if a coal cart could cart coal? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] interview

2006-04-13 Thread tedd
At 5:21 PM +0200 4/13/06, Mad Unix wrote: can you please send some interview questions for php i have in few days to inteview some people. -- madunix If you know php, why are you asking us do your work for you? else What are you doing interviewing someone for a php position? How would yo

Re: [PHP] SQL result

2006-04-13 Thread Anthony Ettinger
http://us3.php.net/manual/en/function.mysqli-fetch-row.php On 4/25/06, Mohsen Pahlevanzadeh <[EMAIL PROTECTED]> wrote: > Dear all, > I remember that i use a func that it return an array what it consist of > result of my sql query. > Please name me that. > Yours,Mohsen > > -- > PHP General Mailing

RE: [PHP] interview

2006-04-13 Thread Bobby Matthis
How about questions they want to hear?: 1) Would you mind receiving a very large paycheck? 2) Do company cars offend you? 3) Would you like a scholarship offered for every one of your children? Ask those three questions, and you have hired them.that's all I know :) -Original Message--

Re: [PHP] interview

2006-04-13 Thread Joe Henry
On Thursday 13 April 2006 11:13 am, Robert Cummings wrote: > On Thu, 2006-04-13 at 12:56, Wolf wrote: > > How much wood would a wood chuck chuck if a wood chuck could chuck wood?? > > Canadian, American, or "Other" woodchuck? > Leave or we shall taunt you a second time! -- Joe Henry www.celebr

Re: [PHP] interview

2006-04-13 Thread Robert Cummings
On Thu, 2006-04-13 at 12:56, Wolf wrote: > How much wood would a wood chuck chuck if a wood chuck could chuck wood?? Canadian, American, or "Other" woodchuck? Cheers, Rob. -- .. | InterJinn Application Framework - http://www.interjinn.c

RE: [PHP] how should MS Access DATETIME be handled in PHP?

2006-04-13 Thread Ford, Mike
On 13 April 2006 17:08, Bing Du wrote: > > Hi! > > > > Bing Du wrote: > > > Excellent! Yes, it now does give me a clue to see what's > > > actually in the object. print_r($rec[0]) shows: > > > > > > stdClass Object ( [year] => 2005 [month] => 8 [day] => 31 [hour] > > > => 0 [minute] => 0 [seco

RE: [PHP] interview

2006-04-13 Thread Jay Blanchard
[snip] How much wood would a wood chuck chuck if a wood chuck could chuck wood?? [/snip] Sub-question A; using a regular wood chuck? Sub-question B; using a PHP wood chuck? (Never mind the expense) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.p

Re: [PHP] interview

2006-04-13 Thread Wolf
How much wood would a wood chuck chuck if a wood chuck could chuck wood?? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] interview

2006-04-13 Thread Anas Mughal
These are all very good questions. And, to top it all, here is a question that was recently posted to the list: How does apache improves PHP? Good luck!!! On 4/13/06, Jeffrey Pearson <[EMAIL PROTECTED]> wrote: > > How about the Presidential election?!! > > > On Apr 13, 2006, at 9:23 AM, Jay

Re: [PHP] interview

2006-04-13 Thread Jeffrey Pearson
How about the Presidential election?!! On Apr 13, 2006, at 9:23 AM, Jay Blanchard wrote: [snip] Great, now the interviewee will be able to cheat. Way to go Jay. [/snip] *blush* I know. I wonder where we could apply, that way we can skew the results so that the cheating doesn't matter. --

RE: [PHP] RADICORE ramework released

2006-04-13 Thread Chrome
t; am I having a bad day? Are brains better than brawn? Is PHP better than Java? Is anything better than .NET? -- Tony Marston http://www.tonymarston.net http://www.radicore.org -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] RADICORE ramework released

2006-04-13 Thread Tony Marston
"Jochem Maas" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Anas Mughal wrote: >> A question for the folks who have tried it out: >> >> Is it better than Ruby on Rails? > > is blue better than red? > anyone care for a holy war? > am I having a bad day? Are brains better than braw

Re: [PHP] RADICORE ramework released

2006-04-13 Thread Tony Marston
"Jochem Maas" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Tony Marston wrote: >> "Kevin Waterson" <[EMAIL PROTECTED]> wrote in message >> news:[EMAIL PROTECTED] >> >>>This one time, at band camp, "Tony Marston" >>><[EMAIL PROTECTED]> wrote: >>> >>> Announcing the first pub

Re: [PHP] RADICORE ramework released

2006-04-13 Thread Tony Marston
You can't tell just by looking at it. You've actually got to use it to develop an application. -- Tony Marston http://www.tonymarston.net http://www.radicore.org ""Anas Mughal"" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] A question for the folks who have tried it out: Is it b

Re: [PHP] Re: RADICORE ramework released

2006-04-13 Thread Tony Marston
"Hans Juergen von Lengerke" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] >> From: Tony Marston <[EMAIL PROTECTED]> >> "Hans Juergen von Lengerke" <[EMAIL PROTECTED]> wrote in message >> news:[EMAIL PROTECTED] >> >> From: Tony Marston <[EMAIL PROTECTED]> >> >> >> >> Any problems wit

RE: [PHP] interview

2006-04-13 Thread Jay Blanchard
[snip] Great, now the interviewee will be able to cheat. Way to go Jay. [/snip] *blush* I know. I wonder where we could apply, that way we can skew the results so that the cheating doesn't matter. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.p

Re: [PHP] how should MS Access DATETIME be handled in PHP?

2006-04-13 Thread Bing Du
> Hi! > > Bing Du wrote: >> Excellent! Yes, it now does give me a clue to see what's actually in >> the >> object. print_r($rec[0]) shows: >> >> stdClass Object ( [year] => 2005 [month] => 8 [day] => 31 [hour] => 0 >> [minute] => 0 [second] => 0 [fraction] => 0 ) >> >> I've never dealt with objec

Re: [PHP] RADICORE ramework released

2006-04-13 Thread Ryan A
> is blue better than red? > anyone care for a holy war? > am I having a bad day? Yes, yes, guess so My $0.2 Cheers! Ryan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] interview

2006-04-13 Thread John Nichel
Jay Blanchard wrote: [snip] Will PHP help me save money on my car insurance? [/snip] No, but a fifteen minute call to Geico will. Wait. That is an answer. I so suck at this. Great, now the interviewee will be able to cheat. Way to go Jay. -- John C. Nichel IV Programmer/System Admin (ÜberG

Re: [PHP] Bar codes

2006-04-13 Thread Leonard Burton
HI, > Any idea how to find that bar code font or what it's called? And what > shall I use to print it out? Is it just as a regulat font, or do I need > some special bar code lib? I have been using this lib for quite some time. http://www.mribti.com/barcode/ You will have to either set register g

Re: [PHP] how should MS Access DATETIME be handled in PHP?

2006-04-13 Thread Bing Du
> I hate list. each to his own :-) > > try this (untested): > > list($year,$month,$day,$hour,$minute,$second,$fraction) = > array_values(get_object_vars($rec[0])); > Magic! That works. In this case, I'd like to use list because I can use the vars directly (e.g. $year) rather than $arr['year'].

RE: [PHP] interview

2006-04-13 Thread Jay Blanchard
[snip] Will PHP help me save money on my car insurance? [/snip] No, but a fifteen minute call to Geico will. Wait. That is an answer. I so suck at this. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Bar codes

2006-04-13 Thread Emil Edeholt
Hi, I've never used bar codes before. And now I need to print out bar codes, and I've been told it should be in the format K39 Normal (I could have misunderstood since I can't find that on google. Maybe Code 39 Normal?). Any idea how to find that bar code font or what it's called? And what sh

Re: [PHP] interview

2006-04-13 Thread John Nichel
Mad Unix wrote: can you please send some interview questions for php i have in few days to inteview some people. Will PHP help me save money on my car insurance? -- John C. Nichel IV Programmer/System Admin (ÜberGeek) Dot Com Holdings of Buffalo 716.856.9675 [EMAIL PROTECTED] -- PHP General

RE: [PHP] interview

2006-04-13 Thread Chris Boget
> >can you please send some interview questions for php i have in few days > >to inteview some people. > 1) If I use PHP, and you use PHP, and everyone on this list uses PHP... > what colour is my car? Hamburger. Oh, wait... > 2) How do I avoid the number 42? Trip over the number 41 and apolo

Re: [PHP] interview

2006-04-13 Thread Angelo Zanetti
Stut wrote: Mad Unix wrote: can you please send some interview questions for php i have in few days to inteview some people. 1) If I use PHP, and you use PHP, and everyone on this list uses PHP... what colour is my car? 2) How do I avoid the number 42? 3) What time is it Eccles? HTH!

Re: [PHP] how should MS Access DATETIME be handled in PHP?

2006-04-13 Thread Andreas Korthaus
Hi! Bing Du wrote: Excellent! Yes, it now does give me a clue to see what's actually in the object. print_r($rec[0]) shows: stdClass Object ( [year] => 2005 [month] => 8 [day] => 31 [hour] => 0 [minute] => 0 [second] => 0 [fraction] => 0 ) I've never dealt with object in PHP. Something new

RE: [PHP] SQL result

2006-04-13 Thread Jay Blanchard
[snip] I remember that i use a func that it return an array what it consist of result of my sql query. Please name me that. [/snip] RTFM. You are now named mysql_fetch_array. http://www.php.net/mysql_fetch_array -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.

Re: [PHP] interview

2006-04-13 Thread Jochem Maas
Jay Blanchard wrote: [snip] can you please send some interview questions for php i have in few days to inteview some people. [/snip] 1. How's you mum? 2. What is PHP? 3. Have you met any of the folks on that list? 4. Can you ask them questions about PHP? 5. is blue better than red? -- PHP Ge

Re: [PHP] interview

2006-04-13 Thread Stut
Mad Unix wrote: can you please send some interview questions for php i have in few days to inteview some people. 1) If I use PHP, and you use PHP, and everyone on this list uses PHP... what colour is my car? 2) How do I avoid the number 42? 3) What time is it Eccles? HTH! -Stut -- PHP

[PHP] SQL result

2006-04-13 Thread Mohsen Pahlevanzadeh
Dear all, I remember that i use a func that it return an array what it consist of result of my sql query. Please name me that. Yours,Mohsen -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] interview

2006-04-13 Thread Jay Blanchard
[snip] can you please send some interview questions for php i have in few days to inteview some people. [/snip] 1. How's you mum? 2. What is PHP? 3. Have you met any of the folks on that list? 4. Can you ask them questions about PHP? -- PHP General Mailing List (http://www.php.net/) To unsubscrib

[PHP] interview

2006-04-13 Thread Mad Unix
can you please send some interview questions for php i have in few days to inteview some people. -- madunix Communications Engineering (RWTH Aachen University) Systems and Network Engineer MCSE, IBM AIX System Specialist, CCNP, CCSP(SECUR,CSVPN)

Re: [PHP] RADICORE ramework released

2006-04-13 Thread John Nichel
Jochem Maas wrote: Anas Mughal wrote: A question for the folks who have tried it out: Is it better than Ruby on Rails? is blue better than red? anyone care for a holy war? am I having a bad day? Is it a work day? -- John C. Nichel IV Programmer/System Admin (ÜberGeek) Dot Com Holdings of

Re: [PHP] how should MS Access DATETIME be handled in PHP?

2006-04-13 Thread Jochem Maas
Bing Du wrote: apparently $rec[0] is a php object - try the following lines to find out what's inside: echo ''; print_r($rec[0]); echo ''; that will probably give you a clue as to how to extract some useful info from the object. Excellent! Yes, it now does give me a clue to see what's actua

Re: [PHP] RADICORE ramework released

2006-04-13 Thread John Nichel
Tony Marston wrote: "Kevin Waterson" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] This one time, at band camp, "Tony Marston" <[EMAIL PROTECTED]> wrote: Announcing the first public release of RADICORE, a Rapid Application Development toolkit for building administrative web appl

Re: [PHP] how should MS Access DATETIME be handled in PHP?

2006-04-13 Thread Bing Du
> apparently $rec[0] is a php object - try the following lines to > find out what's inside: > > echo ''; > print_r($rec[0]); > echo ''; > > that will probably give you a clue as to how to extract some > useful info from the object. Excellent! Yes, it now does give me a clue to see what's actually

Re: [PHP] how should MS Access DATETIME be handled in PHP?

2006-04-13 Thread Jochem Maas
Bing Du wrote: Hello, We have a website which pulls data from its MS Access backend database and publishes the data using Cold Fusion. The Cold Fusion code has '#DateFormat(end_date, "Mmmm d, ")#'. 'end_date' is a table column of type DATETIME in the Access DB. Now, we need to use PHP ins

Re: [PHP] RADICORE ramework released

2006-04-13 Thread Jochem Maas
Anas Mughal wrote: A question for the folks who have tried it out: Is it better than Ruby on Rails? is blue better than red? anyone care for a holy war? am I having a bad day? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] how should MS Access DATETIME be handled in PHP?

2006-04-13 Thread Bing Du
Hello, We have a website which pulls data from its MS Access backend database and publishes the data using Cold Fusion. The Cold Fusion code has '#DateFormat(end_date, "Mmmm d, ")#'. 'end_date' is a table column of type DATETIME in the Access DB. Now, we need to use PHP instead of Cold Fusi

Re: [PHP] Internal Server Error

2006-04-13 Thread Georgi Ivanov
Do you have access to server logs ? If yes, what they say ? PHP as module or as CGI/FastCGI ? When the error occurs ? immediately or after some time ? On Thursday April 13 2006 17:00, Rahul S. Johari wrote: > Ave, > > This is something I don¹t understand. > I have 3 php scripts that run fine on m

Re: [PHP] how to convert 0.5 to 0.50

2006-04-13 Thread tedd
At 3:59 PM +0200 4/13/06, Merlin wrote: Hi there, I am searching for a command on how to format 0.5 to 0.50 thanx for any help, merlin Check out: http://www.weberdev.com/sprintf tedd -- http://sperling.com -

Re: [PHP] Internal Server Error

2006-04-13 Thread chris smith
> I have 3 php scripts that run fine on my localhost server, but when I upload > the 3 files to my Internet Server (Hosting Account), I get the 500 Internal > Server Error. I am able to access them fine on my machine here (Running > Apache Web Server)... But on my internet server, it just keeps giv

Re: [PHP] Internal Server Error : Resolved

2006-04-13 Thread Rahul S. Johari
Well I did figure out the problem. The folder I was uploading the files to had special permissions (yeah I know, Duuuhh!). I kept thinking the files I'm uploading are having a permissions issue, it just skipped my mind that the folder I was uploading to had Special Permissions, not the files. I m

Re: [PHP] how to convert 0.5 to 0.50

2006-04-13 Thread cajbecu
Merlin wrote: > Hi there, > > I am searching for a command on how to format 0.5 to 0.50 > > thanx for any help, > > merlin > -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] how to convert 0.5 to 0.50

2006-04-13 Thread chris smith
On 4/13/06, Merlin <[EMAIL PROTECTED]> wrote: > Hi there, > > I am searching for a command on how to format 0.5 to 0.50 number_format('0.5', 2); -- Postgresql & php tutorials http://www.designmagick.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

[PHP] Re: how to convert 0.5 to 0.50

2006-04-13 Thread Barry
Merlin wrote: Hi there, I am searching for a command on how to format 0.5 to 0.50 thanx for any help, merlin sprintf("%.02f",$string); Or number_format() -- Smileys rule (cX.x)C --o(^_^o) Dance for me! ^(^_^)o (o^_^)o o(^_^)^ o(^_^o) -- PHP General Mailing List (http://www.php.net/) To unsu

[PHP] Internal Server Error

2006-04-13 Thread Rahul S. Johari
Ave, This is something I don¹t understand. I have 3 php scripts that run fine on my localhost server, but when I upload the 3 files to my Internet Server (Hosting Account), I get the 500 Internal Server Error. I am able to access them fine on my machine here (Running Apache Web Server)... But on m

[PHP] how to convert 0.5 to 0.50

2006-04-13 Thread Merlin
Hi there, I am searching for a command on how to format 0.5 to 0.50 thanx for any help, merlin -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] RADICORE ramework released

2006-04-13 Thread Jochem Maas
Tony Marston wrote: "Kevin Waterson" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] This one time, at band camp, "Tony Marston" <[EMAIL PROTECTED]> wrote: Announcing the first public release of RADICORE, a Rapid Application Development toolkit for building administrative web a

Re: [PHP] RADICORE ramework released

2006-04-13 Thread Anas Mughal
A question for the folks who have tried it out: Is it better than Ruby on Rails? Thanks. -- Anas Mughal On 4/11/06, Tony Marston <[EMAIL PROTECTED]> wrote: > > Announcing the first public release of RADICORE, a Rapid Application > Development toolkit for building administrative web applicatio

Re: [PHP] Re: RADICORE ramework released

2006-04-13 Thread Jochem Maas
Tony Marston wrote: "Hans Juergen von Lengerke" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] From: Tony Marston <[EMAIL PROTECTED]> Any problems with locale are cased by having the language code in your browser set to something which cannot be matched up with the contents of th

Re: [PHP] Re: RADICORE ramework released

2006-04-13 Thread Hans Juergen von Lengerke
> From: Tony Marston <[EMAIL PROTECTED]> > "Hans Juergen von Lengerke" <[EMAIL PROTECTED]> wrote in message > news:[EMAIL PROTECTED] > >> From: Tony Marston <[EMAIL PROTECTED]> > >> > >> Any problems with locale are cased by having the language > >> code in your browser set to something which cann

  1   2   >