Re: [PHP] [opinions] Ashop Commerce

2007-05-03 Thread Marco Sottana
if you have nothing to say.. say nothing - Original Message - From: "Richard Lynch" <[EMAIL PROTECTED]> To: "Marco Sottana" <[EMAIL PROTECTED]> Cc: "Stut" <[EMAIL PROTECTED]>; Sent: Thursday, May 03, 2007 6:04 PM Subject: Re: [PHP] [opinions] Ashop Commerce On Thu, May 3, 2007 6:36 a

Re: [PHP] MySQL change-tracking

2007-05-03 Thread Chris
Richard Lynch wrote: On Wed, May 2, 2007 4:32 pm, Brad Fuller wrote: Richard Lynch wrote: I have this simple database and I'm going to have a handful of people editing it... I'd like to track each and every edit with username, and, ideally, provide myself an easy "Undo" if I decide [bleep] is

[PHP] Re: A problem with passing $_GET in an url

2007-05-03 Thread Davis Chan
(sorry if you see 2 posts, I was trying to cancel a post, edit, and repost) Hi! Everyone, Dan is right, after submit button is clicked, the javascript function below is called. I am trying here is the javascript function: > function Ask_Confirm() { > response = confirm("Are you sure?"); > if(r

[PHP] Re: A problem with passing $_GET in an url

2007-05-03 Thread Davis Chan
Hi! Everyone, here is the javascript function: function Ask_Confirm() { response = confirm("Are you sure?"); if(response == true) { to_url = "./admin.php?to_be_rm=" + document.forms[1].to_be_rm.value; // alert(to_url); window.location = to_url; } else { // Do Not

Re: [PHP] What does "<<<" mean?

2007-05-03 Thread itoctopus
never ever used it... I also voted! -- itoctopus - http://www.itoctopus.com "Philip Thompson" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > On Apr 30, 2007, at 2:17 PM, Greg Donald wrote: > >> On 4/30/07, Nick Gorbikoff <[EMAIL PROTECTED]> wrote: >>> Hello, folks. >>> I rember I'

[PHP] Re: Split string

2007-05-03 Thread itoctopus
if ($your_string !== ''){ $arr_string = explode(',', $your_string); $first_part = $arr_string[0]; array_shift($arr_string); $second_part = implode(',', $arr_string); } -- itoctopus - http://www.itoctopus.com "Lester Caine" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTEC

[PHP] Re: Redirect via GET is loosing characters

2007-05-03 Thread itoctopus
You just have to store your form inputs in the session. -- itoctopus - http://www.itoctopus.com "Merlin" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi there, > > I am checking plausability inside a php script that receives a POST > submit. If an error occures the user should

[PHP] Re: File uploading and saving info on mysql

2007-05-03 Thread itoctopus
Here's the file upload class making your life easier: query($sql); } /* [EMAIL PROTECTED] get [EMAIL PROTECTED] This function returns a link to the file based on the id [EMAIL PROTECTED] string $file_id The id of the file in the database [EMAIL PROTECTED] object $db The database h

Re: [PHP] Script feedback: insert string into another string

2007-05-03 Thread Tijnema !
I owe you and Tijnema a beer! Have a great day/night! Cheers, Micky I'm sorry, you have to wait another 9 months, because only than i can legally drink a beer :) (than i will be > 16 :) ) Tijnema -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsu

Re: [PHP] Script feedback: insert string into another string

2007-05-03 Thread Micky Hulse
Hi Richard, thanks again for the detailed reply, I really appreciate you help. Richard Lynch wrote: Counting words is almost always a Bad Idea, since you may have users who use big fat words (University professors and Market-speak) and you have have texters who, like, don't even use words... u

Re: [PHP] File uploading and saving info on mysql

2007-05-03 Thread Richard Lynch
On Thu, May 3, 2007 3:23 pm, Marcelo Wolfgang wrote: > I'm developing for my first time an upload file form which will > populate > a sql insert query, I think I got everything working fine, but the > data > isn't been saved on the database. Can someone help me with what I'm > doing wrong here ? >

Re: [PHP] PHPInfo data

2007-05-03 Thread Richard Lynch
I believe those are all settings from httpd.conf of Apache rather than php.ini, at least based on what they are... On Thu, May 3, 2007 3:23 pm, Chris Boget wrote: > In looking at the PHPInfo data on our two seperate servers, I see that > one > server (server 1) has the following settings (while th

Re: [PHP] File uploading and saving info on mysql

2007-05-03 Thread Jim Lucas
Marcelo Wolfgang wrote: Hi all, I'm developing for my first time an upload file form which will populate a sql insert query, I think I got everything working fine, but the data isn't been saved on the database. Can someone help me with what I'm doing wrong here ? the code follow: 0) {

Re: [PHP] PHPInfo data

2007-05-03 Thread Daniel Brown
Those are Apache configuration settings that are compiled into the Apache modules. You'll probably want to recompile both Apache binaries with the same options if you want both servers to show that information identically. On 5/3/07, Chris Boget <[EMAIL PROTECTED]> wrote: In looking at the

[PHP] PHPInfo data

2007-05-03 Thread Chris Boget
In looking at the PHPInfo data on our two seperate servers, I see that one server (server 1) has the following settings (while the other one, server 2, does not): Apache Environment downgrade-1_0 force-response-1_0 Environment BMC_GLOBALC_HOME PATROL_GC_VERSION PATROL_HOME PATROL_TEMP R

[PHP] File uploading and saving info on mysql

2007-05-03 Thread Marcelo Wolfgang
Hi all, I'm developing for my first time an upload file form which will populate a sql insert query, I think I got everything working fine, but the data isn't been saved on the database. Can someone help me with what I'm doing wrong here ? the code follow: 0) { echo "Return Code: "

Re: [PHP] PHP's ldap_sasl_bind tries to authenticate with KRB5CCNAME other than the one provided by mod_auth_kerb

2007-05-03 Thread gil ran
On 5/3/07, Richard Lynch <[EMAIL PROTECTED]> wrote: On Thu, May 3, 2007 12:33 am, gil ran wrote: >> I dunno what klist does, nor what any of the KRB stuff is, but if >> you >> want to preserve this KRB thingie from page to page, it looks like >> you >> will need to do more than just run 'klist'..

RE: [PHP] Looking for an Architectural Guru

2007-05-03 Thread Daevid Vincent
> This is a seriously risky attempt at creating a business as > we're creating a > team, where there is no initial compensation/salary. This is > basically a > group of highly skilled guys getting together, to build what > should be a > couple of successful consumer/business oriented apps. The

Re: [PHP] Creating a table for login system

2007-05-03 Thread Daniel Brown
Sounds like something that may be better posted at ScriptLance. :-\ Check out this link --- it's pretty concise: http://www.olate.co.uk/articles/185 On 3 May 2007 18:38:02 GMT, Karl James <[EMAIL PROTECTED]> wrote: Team, Can you provide a very accurate tutorial on how to create

Re: [PHP] Creating a table for login system

2007-05-03 Thread Dan McCullough
http://www.devshed.com/c/a/PHP/Logging-With-PHP/ enjoy! On 3 May 2007 18:38:02 GMT, Karl James <[EMAIL PROTECTED]> wrote: Team, Can you provide a very accurate tutorial on how to create a login system. I am using website to control a fantasy football league and teams. one sign in only for each

[PHP] Creating a table for login system

2007-05-03 Thread Karl James
Team, Can you provide a very accurate tutorial on how to create a login system. I am using website to control a fantasy football league and teams. one sign in only for each league member/team owner. I am using phpmyadmin. Can you please help me with how the table should be. Also, help provid a

Re: [PHP] Redirect via GET is loosing characters

2007-05-03 Thread Neo [GC]
Ah, i thought to remember that the limit is lower on IIS than on Apache, maybe i've just some memory faults. ;) GET is meant to define what to GET, not to define content. This sounds a bit academic, but remember that the GET-args are a part of the URI and so will also go into the http-log for

Re: [PHP] excel macro into php

2007-05-03 Thread Daniel Brown
Actually, yes, about half but I didn't use a translator, dork! ;-P On 5/3/07, Tijnema ! <[EMAIL PROTECTED]> wrote: On 5/3/07, Daniel Brown <[EMAIL PROTECTED]> wrote: >Tij: > >Ja, spreche ich Spanischen. Me habla espanol bien no muy bien, pero > bastante bueno. Ik leer enke

Re: [PHP] excel macro into php

2007-05-03 Thread Tijnema !
On 5/3/07, Daniel Brown <[EMAIL PROTECTED]> wrote: Tij: Ja, spreche ich Spanischen. Me habla espanol bien no muy bien, pero bastante bueno. Ik leer enkel het Nederlands. Het is als het Engels, maar er is één of ander verschil. Haha, dat is toch redelijk nederlands :) << Dutch Bien

Re: [PHP] Script feedback: insert string into another string

2007-05-03 Thread Richard Lynch
On Wed, May 2, 2007 6:36 pm, Micky Hulse wrote: > 1. wordwrap() is a little different than the function I wrote because > it > counts characters only... I need to count words. I am sure wordwrap > could be modified to count words, but I have yet to really explore > this > option. Counting words is

Re: [PHP] Re: A problem with passing $_GET in an url

2007-05-03 Thread Richard Lynch
On Thu, May 3, 2007 6:45 am, Dan Shirah wrote: ... > On 5/3/07, Travis Moore <[EMAIL PROTECTED]> wrote: >> >> If you're using window.location="./script.php?var=value", it's not >> actually using a variable, it's using a string. >> >> If you're just using the above as an example, then could you ple

Re: Fw: [PHP] Custom database session handler and data concurrent access from ajax request

2007-05-03 Thread Richard Lynch
On Thu, May 3, 2007 11:24 am, Nicolas Quirin wrote: >> current session. Semaphore is created if not existent, semaphore is >> acquired if free, blocking if process must wait for this ressource. >> >> From my first tests of it, less error occured... less, or none? If it's not "none" there is some

Re: [PHP] excel macro into php

2007-05-03 Thread Richard Lynch
On Thu, May 3, 2007 11:17 am, Daniel Brown wrote: > Function CantidadEnLetra(tyCantidad As Currency) As String function CantidadEnLetra ($tyCantidad) { /* > Dim lyCantidad As Currency, lyCentavos As Currency, lnDigito As Byte, > lnPrimerDigito As Byte, lnSegundoDigito As Byte, lnTercerDigito As >

Re: [PHP] Deviation? Distribution? OT?

2007-05-03 Thread tedd
At 3:11 PM -0500 5/2/07, Richard Lynch wrote: On Wed, May 2, 2007 7:55 am, tedd wrote: Let me estate the problem. From your dB of things (the population), you're going to pull out the top 100 most popular items and then divide them into five groups using labels t1 through t5. Considering tha

Fw: [PHP] Custom database session handler and data concurrent access from ajax request

2007-05-03 Thread Nicolas Quirin
- Original Message - From: "Nicolas Quirin" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, May 03, 2007 6:22 PM Subject: Re: [PHP] Custom database session handler and data concurrent access from ajax request Ok thanks a lot to confirm my problem. I have partially imple

Re: [PHP] PHP's ldap_sasl_bind tries to authenticate with KRB5CCNAME other than the one provided by mod_auth_kerb

2007-05-03 Thread Richard Lynch
On Thu, May 3, 2007 12:33 am, gil ran wrote: >> I dunno what klist does, nor what any of the KRB stuff is, but if >> you >> want to preserve this KRB thingie from page to page, it looks like >> you >> will need to do more than just run 'klist'... > > I don't want to preserve this KRB thingie from p

Re: [PHP] excel macro into php

2007-05-03 Thread Daniel Brown
Tij: Ja, spreche ich Spanischen. Me habla espanol bien no muy bien, pero bastante bueno. Ik leer enkel het Nederlands. Het is als het Engels, maar er is één of ander verschil. Richard (the original, if you want it): Guys.. I have a problem and I was wondering if somebody with goo

Re: [PHP] Looking for an Architectural Guru

2007-05-03 Thread Daniel Brown
Ha! You and the 2.0 terminology If you're coining that, I'm registering the domain boo20.com (boo2.comwas already taken). On 5/3/07, Richard Lynch <[EMAIL PROTECTED]> wrote: On Thu, May 3, 2007 9:24 am, bruce wrote: > sweat equity pitch You might get more response if you include so

Re: [PHP] excel macro into php

2007-05-03 Thread Richard Lynch
On Thu, May 3, 2007 4:37 am, Tijnema ! wrote: > On 5/2/07, Anton Krall <[EMAIL PROTECTED]> wrote: >> Guys.. I have a problem and I was wondering if somebody with good >> php >> knowledge could help. >> >> I have this excel macro that converts number currency (mexican) into >> a >> string and I was

Re: [PHP] [opinions] Ashop Commerce

2007-05-03 Thread Richard Lynch
On Thu, May 3, 2007 6:36 am, Marco Sottana wrote: > i am new ... > say me .. 2 or 3 nice e-commerce and why is nice.. please.. RTFA I was sick of this thread in 1997!!! I sure don't want to see it again! -- Some people have a "gift" link here. Know what I want? I want you to buy a CD from some

Re: [PHP] [opinions] Ashop Commerce

2007-05-03 Thread Richard Lynch
On Thu, May 3, 2007 4:39 am, Marco Sottana wrote: > deleted to minimize benefits to aforementioned software My opinion is any user of this software should immediately switch to anything else, to avoid supporting such spam. jmho. -- Some people have a "gift" link here. Know what I want? I want y

Re: [PHP] Custom database session handler and data concurrent access from ajax request

2007-05-03 Thread Richard Lynch
On Thu, May 3, 2007 4:45 am, [EMAIL PROTECTED] wrote: > Sessions are managed in a mysql database, with autocommit enabled. I'm > using > mysql_pconnect in my handler to read/write session data (same user, > same > password, same host, always). As noted in the user comments of the on-line manual, t

Re: [PHP] Redirect via GET is loosing characters

2007-05-03 Thread Daniel Brown
If it's on the same domain/user account, that's probably a better idea but with $data['rurl'] being used, I'm (ignorantly) assuming that RURL = Remote URL. On 5/3/07, Richard Lynch <[EMAIL PROTECTED]> wrote: On Thu, May 3, 2007 9:26 am, Merlin wrote: > I am checking plausability inside a

Re: [PHP] Discussion of bug #39062

2007-05-03 Thread Richard Lynch
On Thu, May 3, 2007 6:59 am, Crayon wrote: > On Thursday 03 May 2007 03:18, Richard Lynch wrote: >> On Wed, May 2, 2007 1:14 pm, Bill Moran wrote: >> > http://bugs.php.net/bug.php?id=39062 > >> This discussion may be better placed on "Internals" where the people >> who make these decisions hang o

Re: [PHP] Redirect via GET is loosing characters

2007-05-03 Thread Daniel Brown
Beating a dead horse here, since it's been mentioned twice already, but yeah --- $_SESSION's are the way to go with this. And wherever you have your error handling, do: And for the record, it's not just the HTTP server that trims it, but the browser generally does, as well, to avoid

Re: [PHP] Custom database session handler and data concurrent access from ajax request

2007-05-03 Thread Nicolas Quirin
Nobody could help me??? THX - Original Message - From: <[EMAIL PROTECTED]> To: Sent: Thursday, May 03, 2007 11:45 AM Subject: [PHP] Custom database session handler and data concurrent access from ajax request Hi, i'm currently working on a web site that use AJAX requests to load

Re: [PHP] Looking for an Architectural Guru

2007-05-03 Thread Richard Lynch
On Thu, May 3, 2007 9:24 am, bruce wrote: > sweat equity pitch You might get more response if you include some kind of idea of what sort of web app you are building... Financial? Social? Entertainment? It seems to me like we're back in "Boom" mode [1], and a sweat equity pitch is gonna be kind

Re: [PHP] Re: Tag Cloud (WAS Deviation? Distribution? OT?)

2007-05-03 Thread Stut
Richard Lynch wrote: On Thu, May 3, 2007 10:00 am, Stut wrote: Richard Lynch wrote: $query = "select tag, popular from (select tag, count(*) as popular from entry_tag group by tag order by popular desc limit 100) as p order by tag"; I'm no expert, and I have no way to test this, but the foll

Re: [PHP] Redirect via GET is loosing characters

2007-05-03 Thread Richard Lynch
On Thu, May 3, 2007 9:26 am, Merlin wrote: > I am checking plausability inside a php script that receives a POST > submit. If an error occures the user should be redirected back, along > with his original data filled into the forms. > > There is a problem with this. As the GET method, which the red

Re: [PHP] Re: Tag Cloud (WAS Deviation? Distribution? OT?)

2007-05-03 Thread Richard Lynch
On Thu, May 3, 2007 10:00 am, Stut wrote: > Richard Lynch wrote: >> $query = "select tag, popular from (select tag, count(*) as >> popular >> from entry_tag group by tag order by popular desc limit 100) as p >> order by tag"; > > I'm no expert, and I have no way to test this, but the following

Re: [PHP] PHP + COM (IE Button COM Server)

2007-05-03 Thread Richard Lynch
http://php.net/com But that's only going to work on the same machine where PHP is running -- It does NOT add buttons and whatnot to my browser if I surf to your website... I actually doubt that the Python one does either, if you run it server-side... On Wed, May 2, 2007 6:53 pm, Iqbal Naved wrot

Re: [PHP] Redirect via GET is loosing characters

2007-05-03 Thread Stut
Merlin wrote: I am checking plausability inside a php script that receives a POST submit. If an error occures the user should be redirected back, along with his original data filled into the forms. There is a problem with this. As the GET method, which the redirect is using, only allows a cer

Re: [PHP] excel macro into php

2007-05-03 Thread Tijnema !
On 5/3/07, Daniel Brown <[EMAIL PROTECTED]> wrote: Sie nicht auch sprechen Spanischen, Tij? Nein, aber mein deutsch ist also nicht gut ;) Sprechen sie Spanischen Daniel?\ Tijnema On 5/3/07, Tijnema ! <[EMAIL PROTECTED]> wrote: > > On 5/2/07, Anton Krall <[EMAIL PROTECTED] > wrote: > >

[PHP] Re: Tag Cloud (WAS Deviation? Distribution? OT?)

2007-05-03 Thread Richard Lynch
First and foremost, Oliver was right, and I was wrong. The data is in a power curve, or maybe logarithmic, or whatever curve you want to call it, depending on which expert you consult... But as I realized last night, the data is ALREADY in that "curve" and by simply breaking down in even incremen

[PHP] Redirect via GET is loosing characters

2007-05-03 Thread Merlin
Hi there, I am checking plausability inside a php script that receives a POST submit. If an error occures the user should be redirected back, along with his original data filled into the forms. There is a problem with this. As the GET method, which the redirect is using, only allows a certai

Re: [PHP] excel macro into php

2007-05-03 Thread Daniel Brown
Sie nicht auch sprechen Spanischen, Tij? On 5/3/07, Tijnema ! <[EMAIL PROTECTED]> wrote: On 5/2/07, Anton Krall <[EMAIL PROTECTED]> wrote: > Guys.. I have a problem and I was wondering if somebody with good php > knowledge could help. > > I have this excel macro that converts number currenc

Re: [PHP] Redirect via GET is loosing characters

2007-05-03 Thread Neo [GC]
Merlin schrieb: Hi there, I am checking plausability inside a php script that receives a POST submit. If an error occures the user should be redirected back, along with his original data filled into the forms. There is a problem with this. As the GET method, which the redirect is using, onl

Re: [PHP] Re: Tag Cloud (WAS Deviation? Distribution? OT?)

2007-05-03 Thread Stut
Richard Lynch wrote: $query = "select tag, popular from (select tag, count(*) as popular from entry_tag group by tag order by popular desc limit 100) as p order by tag"; I'm no expert, and I have no way to test this, but the following should work and gets shot of the sub-select... select t

[PHP] Looking for an Architectural Guru

2007-05-03 Thread bruce
Hi. We're creating a small team for the creation of some specific web based apps/services. Currently we are 5-6 guys, covering design/development/sales/marketing/Linux admin... We're in the process of rounding out the team with DB skills, as well as a serious senior level kind of architect resourc

Re: [PHP] Discussion of bug #39062

2007-05-03 Thread Bill Moran
In response to Crayon <[EMAIL PROTECTED]>: > On Thursday 03 May 2007 03:18, Richard Lynch wrote: > > On Wed, May 2, 2007 1:14 pm, Bill Moran wrote: > > > http://bugs.php.net/bug.php?id=39062 > > > This discussion may be better placed on "Internals" where the people > > who make these decisions ha

Re: [PHP] Discussion of bug #39062

2007-05-03 Thread Crayon
On Thursday 03 May 2007 03:18, Richard Lynch wrote: > On Wed, May 2, 2007 1:14 pm, Bill Moran wrote: > > http://bugs.php.net/bug.php?id=39062 > This discussion may be better placed on "Internals" where the people > who make these decisions hang out more... Maybe Bill wanted us lowly users to know

Re: [PHP] [opinions] Ashop Commerce

2007-05-03 Thread Crayon
On Thursday 03 May 2007 18:36, Stut wrote: > That is not a request for an opinion, it's an attempt to get a product > name associated with a set of keywords. By quoting the spam in full in your replies you are aiding and abetting. -- Crayon -- PHP General Mailing List (http://www.php.net/) To

Re: [PHP] Re: A problem with passing $_GET in an url

2007-05-03 Thread Dan Shirah
Could you please post your code. It sounds like you have a submit button that when clicked goes to a javascript function which pops up a confirmation box. Is that correct? On 5/3/07, Travis Moore <[EMAIL PROTECTED]> wrote: If you're using window.location="./script.php?var=value", it's not ac

Re: [PHP] [opinions] Ashop Commerce

2007-05-03 Thread Marco Sottana
i am new ... say me .. 2 or 3 nice e-commerce and why is nice.. please.. - Original Message - From: "Stut" <[EMAIL PROTECTED]> To: "Marco Sottana" <[EMAIL PROTECTED]> Cc: Sent: Thursday, May 03, 2007 12:36 PM Subject: Re: [PHP] [opinions] Ashop Commerce Marco Sottana wrote: why S

Re: [PHP] [opinions] Ashop Commerce

2007-05-03 Thread Stut
Marco Sottana wrote: why Spam? before to use ashop i ask ... if i ask what ecommerce is better .. nobody answer me.. now.. you shout SPAM .. there isn't "link" to ashop .. i only ASK ! thanks ok .. what ecommerce you prefer ? and why ? "Please write your opinions of the service and if you can,

Re: [PHP] [opinions] Ashop Commerce

2007-05-03 Thread Marco Sottana
why Spam? before to use ashop i ask ... if i ask what ecommerce is better .. nobody answer me.. now.. you shout SPAM .. there isn't "link" to ashop .. i only ASK ! thanks ok .. what ecommerce you prefer ? and why ? - Original Message - From: "Stut" <[EMAIL PROTECTED]> To: Sent: Thursd

Re: [PHP] [opinions] Ashop Commerce

2007-05-03 Thread Marco Sottana
ashop isn't mine .. it isn't spam i only ask your opinion thanks! - Original Message - From: "Crayon" <[EMAIL PROTECTED]> To: Sent: Thursday, May 03, 2007 12:14 PM Subject: Re: [PHP] [opinions] Ashop Commerce Take your spam and shove it up your asshop. -- Crayon -- PHP General M

Re: [PHP] [opinions] Ashop Commerce

2007-05-03 Thread Stut
Ashop Commerce sucks. The product is anti-productive, badly written and riddled with potential exploits that may expose sensitive data. Don't use it if you value having customers and not being ripped off. -Stut NB: I have never used Ashop Commerce, nor will I ever use it. These "opinions" are

Re: [PHP] [opinions] Ashop Commerce

2007-05-03 Thread Crayon
Take your spam and shove it up your asshop. -- Crayon -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] [opinions] Ashop Commerce

2007-05-03 Thread Marco Sottana
ashop in a complete ecommerce application web based and without installation. you've got a complete administration of products, contents, theme and more ... is too good the stats area where you can see everything your customers or visitors see or buy in you ecommerce. - Original Message --

[PHP] [opinions] Ashop Commerce

2007-05-03 Thread Marco Sottana
Ashop Commerce is a leading provider of hosted shopping cart software. It offers a complete solution for merchants to sell online. Please write your opinions of the service and if you can, use these keywords throughout your post in addition to the anchor text. Shopping cart software, shopping c

[PHP] Custom database session handler and data concurrent access from ajax request

2007-05-03 Thread n . quirin
Hi, i'm currently working on a web site that use AJAX requests to load a web page by part. So, my apache server gives quickly an answer and current client must wait a little bit in order to have the entire web page, but while this loading step, he can already see my partially displayed web page a

Re: [PHP] excel macro into php

2007-05-03 Thread Tijnema !
On 5/2/07, Anton Krall <[EMAIL PROTECTED]> wrote: Guys.. I have a problem and I was wondering if somebody with good php knowledge could help. I have this excel macro that converts number currency (mexican) into a string and I was wondering if somebody could help translating it to php... Her eis