Re: [PHP] Re: Stumped! 4.x to 5.1 problem!!

2006-07-26 Thread Jochem Maas
markw@mohawksoft.com wrote: >> markw@mohawksoft.com wrote: >>> [snip] seems the perceived problem is being caused by something else? >>> Sorry, I have to respectfully disagree. >> ok :-). > > Men of integrity must be able to disgree peacefully. :-) > :-) > > Well, the point I was try

Re: [PHP] Re: Stumped! 4.x to 5.1 problem!!

2006-07-25 Thread markw
> markw@mohawksoft.com wrote: >> [snip] >>> seems the perceived problem is being caused by something else? >>> >> >> Sorry, I have to respectfully disagree. > > ok :-). Men of integrity must be able to disgree peacefully. :-) > >> >> I was converting all indexes to string indexes, and simply usin

Re: [PHP] Re: Stumped! 4.x to 5.1 problem!!

2006-07-25 Thread Jochem Maas
markw@mohawksoft.com wrote: > [snip] >> seems the perceived problem is being caused by something else? >> > > Sorry, I have to respectfully disagree. ok :-). > > I was converting all indexes to string indexes, and simply using > "zend_hash_update" to re-constitute the objects and they simply di

Re: [PHP] Re: Stumped! 4.x to 5.1 problem!!

2006-07-24 Thread Jochem Maas
Mark wrote: > Mark wrote: > >> I have an extension that seems to create PHP variables correctly, and >> var_dump() doesn't seem to have a problem. but upon moving to 5.1.x it >> fails. >> >> Anyone have a suggestion? > > Well, it is fixed. Evidently, PHP 5.1 sees a difference between $var["0"] >

Re: [PHP] Re: Stumped! 4.x to 5.1 problem!!

2006-07-24 Thread markw
[snip] > > seems the perceived problem is being caused by something else? > Sorry, I have to respectfully disagree. I was converting all indexes to string indexes, and simply using "zend_hash_update" to re-constitute the objects and they simply did not work. When I scanned indexes strings to test

Re: [PHP] Re: STUMPED: path/style vars in Windows with IIS

2004-12-13 Thread Ck
"M. Sokolewicz" <[EMAIL PROTECTED]> wrote: > Chris wrote: > > I am trying to get path/style variables working in windows with IIS > > on a hosted environment. > > this is a "stupid IIS"-issue :) I'd suggest asking this on a > mailinglist > that specialises in IIS, and not in PHP (*only*). I under

Re: [PHP] Re: Stumped!

2002-12-16 Thread Cristian Ichim
Try to insert all your received data from the database server data into an array then to execute your query after the unique id(if you have one!!!). $sql=select * from table where id='$id'; then all the data you put into an array and select the index from the array. Check the list html tag for more

Re: [PHP] Re: Stumped!

2002-12-16 Thread Joseph W. Goff
You don't have a closing french brace for your while loop. - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Monday, December 16, 2002 12:57 PM Subject: Re: [PHP] Re: Stumped! Hmm, I am still getting a parse er

Re: [PHP] Re: Stumped!

2002-12-16 Thread Omar
Check out your while { } <--- i don´t see a closing one echo ("$meetingName "); try: echo ''.$meetingName.''; <[EMAIL PROTECTED]> escribió en el mensaje [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Hmm, I am still getting a parse error on the last line of code... In a message dated 12/16/200

Re: [PHP] Re: Stumped!

2002-12-16 Thread CSParker1
Hmm, I am still getting a parse error on the last line of code... In a message dated 12/16/2002 1:49:26 PM Eastern Standard Time, [EMAIL PROTECTED] writes: > $sql = "SELECT ."; > $sql_e = mysql_query($sql); > > while ($result = mysql_fetch_array($query_e)) { > . > } > > You were missi