Re: [PHP] Re: 64bit vs. 32bit

2009-01-20 Thread Ross McKay
On Mon, 19 Jan 2009 18:39:40 -0800, James Colannino wrote: I could be wrong, but I'll bet anything that Wine made use of the now defunct vm86 component of the x86 architecture. [...] Yes, I believe that's true, and that it's not available when you compile for x86-64. However... why? If you

Re: [PHP] Re: 64bit vs. 32bit

2009-01-20 Thread Ross McKay
Micah Gersten wrote: Linux can already address all the RAM on a 32 bit system with PAE. The advantage of 64 bit with regards to RAM is that a single process can address more than 2.5 - 2.7 GB of RAM. True, what I meant was processes on Linux will be able to address more. Good catch. Even with

[PHP] Re: How to use SVN + PHP

2009-01-20 Thread Ross McKay
On Mon, 19 Jan 2009 22:32:49 +0100, Edmund Hertle wrote: I'm thinking about implementing Subversion to an existing php project for obvious reasons. Yay! What Nathan said, plus a couple of comments from me... [...] My ideas about using SVN are these: - Repository is managing trunk, branch and

Re: [PHP] maybe we could all?

2009-01-20 Thread Robert Cummings
On Tue, 2009-01-20 at 01:35 +, Nathan Rixham wrote: and on the other side.. to open things up interface Object { } or abstract class Object { } or class Object { } These braces are all wrong. Cheers, Rob. -- http://www.interjinn.com Application and Templating Framework

Re: [PHP] developers life

2009-01-20 Thread Robert Cummings
On Mon, 2009-01-19 at 22:06 +, Nathan Rixham wrote: Robert Cummings wrote: On Mon, 2009-01-19 at 21:53 +, Nathan Rixham wrote: Robert Cummings wrote: On Mon, 2009-01-19 at 21:28 +, Nathan Rixham wrote: well just for the hell of it; and because I'm feeling

Re: [PHP] maybe we could all?

2009-01-20 Thread Robert Cummings
On Mon, 2009-01-19 at 19:59 -0800, Kyle Terry wrote: I demand Dan and Nathan to go to bed now. Together? ;) Cheers, Rob. -- http://www.interjinn.com Application and Templating Framework for PHP -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP] maybe we could all?

2009-01-20 Thread Jason Pruim
On Jan 19, 2009, at 6:57 PM, Nathan Rixham wrote: Project: PHP Common Objects and Datatypes method: for everybody who wishes to contribute, and for everybody to review, discuss and work on the same classes. what are they: classes we can all use, that have been discussed, reviewed and

Re: [PHP] maybe we could all?

2009-01-20 Thread Richard Heyes
... Um, PEAR? -- Richard Heyes HTML5 Graphing for Firefox, Chrome, Opera and Safari: http://www.rgraph.org (Updated January 17th) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] maybe we could all?

2009-01-20 Thread Jay Blanchard
[snip] On Tue, 2009-01-20 at 01:35 +, Nathan Rixham wrote: and on the other side.. to open things up interface Object { } or abstract class Object { } or class Object { } These braces are all wrong. [/snip] Uh...no they're not. (And you knew I was going to say that :) )

[PHP] PHP-Java Bridge: Connect PHP to MySQL using JNDI

2009-01-20 Thread jpmad4it
Hi everyone! This is driving me nuts! I have setup a Linux webserver. Tomcat is running at the backend and is connected to Apache at the frontend using mod_proxy. At the moment I have a few test applications setup, which involves Apache sending JSP requests to Tomcat via mod_proxy. They all

[PHP] mysql_query and my.cnf?

2009-01-20 Thread Waynn Lue
Hey guys, I've been noticing that large queries cause a connection lost to mysql server problem, so I'm trying to figure out what settings I need to tweak in my my.cnf file to get it to work. I know people change the max-allowed-packet variable, but I'm trying to figure out what the correct

Re: [PHP] developers life

2009-01-20 Thread Jason Pruim
On Jan 19, 2009, at 10:12 PM, Paul M Foster wrote: On Mon, Jan 19, 2009 at 10:23:49PM -, c...@l-i-e.com wrote: ESTJ Me too. After answering 68 questions (All that displayed) it told me I didn't answer them all... So if I want to go in rewrite the stupid thing so that it works

Re: [PHP] developers life

2009-01-20 Thread Robert Cummings
On Tue, 2009-01-20 at 08:16 -0500, Jason Pruim wrote: On Jan 19, 2009, at 10:12 PM, Paul M Foster wrote: On Mon, Jan 19, 2009 at 10:23:49PM -, c...@l-i-e.com wrote: ESTJ Me too. After answering 68 questions (All that displayed) it told me I didn't answer them all... So

[PHP] Code Not entering the value in the Database

2009-01-20 Thread Chris Carter
Hi, My code is not giving error but not doing the desired action. I need to append a value in database just when the user logs in after entering the username and password. So I am not presenting the user with a account but just a thank you page. Steps: 1) User enters the user name and

[PHP] session mysteriously killed

2009-01-20 Thread clive
Hi we have an web based intranet system, users started reporting that they kept getting logged out, and the log outs were happening randomly. There is no coded any were that refers to sessions other than the login/logout and header file. Ive increased the session.cookie_lifetime to

Re: [PHP] Code Not entering the value in the Database

2009-01-20 Thread HostWare Kft.
Did I miss something, or you really left the execution of the last $sql? After you put the 'INSERT INTO...' string in $sql, you have to mysql_query it, or you won't get any result. SanTa - Original Message - From: Chris Carter chandan9sha...@yahoo.com To: php-general@lists.php.net

Re: [PHP] developers life

2009-01-20 Thread Jason Pruim
On Jan 20, 2009, at 9:18 AM, Robert Cummings wrote: On Tue, 2009-01-20 at 08:16 -0500, Jason Pruim wrote: On Jan 19, 2009, at 10:12 PM, Paul M Foster wrote: On Mon, Jan 19, 2009 at 10:23:49PM -, c...@l-i-e.com wrote: ESTJ Me too. After answering 68 questions (All that displayed)

Re: [PHP] session mysteriously killed

2009-01-20 Thread ceo
Are you perhaps storing the session data in a DB? If the field type is, say, text, and you put something large in $_SESSION, you'll have truncated data, the session manager can't unserialize it, and you will have a silent failure when they try to do their next task -- They get logged out

Re: [PHP] PHP-Java Bridge: Connect PHP to MySQL using JNDI

2009-01-20 Thread ceo
In general, if you are trying to get DB connections to work in a hybrid situation, and no native driver is behaving, try ODBC. It's crude, slow, and not pretty, but it should work. You can set it up so that you can go back later and dink around with drivers and re-compiling, but at least

Re: [PHP] session mysteriously killed

2009-01-20 Thread clive
c...@l-i-e.com wrote: Are you perhaps storing the session data in a DB? No its using the file system If the field type is, say, text, and you put something large in $_SESSION, you'll have truncated data, the session manager can't unserialize it, and you will have a silent failure when

Re: [PHP] 64bit vs. 32bit

2009-01-20 Thread Per Jessen
dbrooke wrote: Hello, I am interested in hearing opinions about if there are reasons to stay with a 32bit php/apache if there is 64bit options available. What are the pros/cons in running in the different architectures? Unless you 1) have lots of RAM (e.g. 16Gb or more) that you need to

[PHP] Client/Server Printing

2009-01-20 Thread Paul M Foster
I'd like a side check on what I'm doing to print on our internal network. We have an internal server/site which uses PHP code I've written to run the business-- invoicing, A/P, inventory, etc. Some things, like invoices and reports, need to be printed. Now remember, the code is on the server, and

Re: [PHP] Code Not entering the value in the Database

2009-01-20 Thread Jan G.B.
2009/1/20 Chris Carter chandan9sha...@yahoo.com: Hi, My code is not giving error but not doing the desired action. But it can do a lot more than your desired action. // insert new entry in the database if entry submitted $emailAddress = $_POST['emailAddress'];

Re: [PHP] mysql_query and my.cnf?

2009-01-20 Thread Richard Heyes
... Hi, You might get more help on the MySQL list. -- Richard Heyes HTML5 Graphing for Firefox, Chrome, Opera and Safari: http://www.rgraph.org (Updated January 17th) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Client/Server Printing

2009-01-20 Thread clive
Ideally you want the document to print with the least amount of click or without having to open up 3rd party applications, would it be possible for the server to print to documents, I have done something like this before on a windows machine. Clive Paul M Foster wrote: I'd like a side

Re: [PHP] session mysteriously killed

2009-01-20 Thread clive
further to my last email, the bit of code that checks if the person is logged in looks something like this: if ( isset ( $_SESSION['loggedin'] ) ) { //check some other session variables } else { //log reason for logging the user out //redirect to login page } The variable,

Re: [PHP] PHP-Java Bridge: Connect PHP to MySQL using JNDI

2009-01-20 Thread jpmad4it
Thanks. However, I'm using this process as a test. In the proper application we will be using a JDBC or JDNI connection initiated by PHP to connect to our IDMS database. Its complicated but it means we have to use the PHP-Java Bridge, Java and JDBC. so we can't use ODBC. I'm using this as a

Re: [PHP] developers life

2009-01-20 Thread ceo
catch-all? Yes, with lots of spam filtering, including a custom one in PHP. Got tired of waiting for webmail to run its filters. PHP cron job on the server with IMAP. Comes in handy for web sign-ups and the following spam -- And for identifying spammers. I don't work with spammers.

Re: [PHP] session mysteriously killed

2009-01-20 Thread Edmund Hertle
2009/1/20 clive clive_li...@immigrationunit.com further to my last email, the bit of code that checks if the person is logged in looks something like this: if ( isset ( $_SESSION['loggedin'] ) ) { //check some other session variables } else { //log reason for logging the user

Re: [PHP] Client/Server Printing

2009-01-20 Thread Kyle Terry
On Tue, Jan 20, 2009 at 7:24 AM, clive clive_li...@immigrationunit.comwrote: Ideally you want the document to print with the least amount of click or without having to open up 3rd party applications, would it be possible for the server to print to documents, I have done something like this

Re: [PHP] mysql_query and my.cnf?

2009-01-20 Thread Jan G.B.
2009/1/20 Waynn Lue waynn...@gmail.com: Hey guys, I've been noticing that large queries cause a connection lost to mysql server problem, so I'm trying to figure out what settings I need to tweak in my my.cnf file to get it to work. Have you had a look on your (mysql) Logfiles and/or are you

Re: [PHP] maybe we could all?

2009-01-20 Thread Kyle Terry
On Tue, Jan 20, 2009 at 8:52 AM, Shawn McKenzie nos...@mckenzies.netwrote: Kyle Terry wrote: On Mon, Jan 19, 2009 at 6:31 PM, Nathan Rixham nrix...@gmail.com wrote: Eric Butera wrote: On Mon, Jan 19, 2009 at 9:13 PM, Kyle Terry k...@kyleterry.com wrote: On Mon, Jan 19, 2009 at

[PHP] ANNOUNCEMENT: ModBox - Open Platform as a Service

2009-01-20 Thread cl
After posting to this list to see if it is appropriate and getting good feedback, I'm posting an announcement I think is very relative to this list as I have been using PHP ever since it was a Perl script (PHP/FI) and have been heavily influenced by it's concept and evolution when creating what

Re: [PHP] ANNOUNCEMENT: ModBox - Open Platform as a Service

2009-01-20 Thread Kyle Terry
On Tue, Jan 20, 2009 at 9:09 AM, c...@wizzyweb.com wrote: After posting to this list to see if it is appropriate and getting good feedback, I'm posting an announcement I think is very relative to this list as I have been using PHP ever since it was a Perl script (PHP/FI) and have been heavily

Re: [PHP] maybe we could all?

2009-01-20 Thread Jason Pruim
On Jan 20, 2009, at 12:02 PM, Kyle Terry wrote: On Tue, Jan 20, 2009 at 8:52 AM, Shawn McKenzie nos...@mckenzies.netwrote: Kyle Terry wrote: On Mon, Jan 19, 2009 at 6:31 PM, Nathan Rixham nrix...@gmail.com wrote: Eric Butera wrote: On Mon, Jan 19, 2009 at 9:13 PM, Kyle Terry

Re: [PHP] maybe we could all?

2009-01-20 Thread Kyle Terry
On Tue, Jan 20, 2009 at 9:28 AM, Jason Pruim japr...@raoset.com wrote: On Jan 20, 2009, at 12:02 PM, Kyle Terry wrote: On Tue, Jan 20, 2009 at 8:52 AM, Shawn McKenzie nos...@mckenzies.net wrote: Kyle Terry wrote: On Mon, Jan 19, 2009 at 6:31 PM, Nathan Rixham nrix...@gmail.com wrote:

Re: [PHP] maybe we could all?

2009-01-20 Thread Shawn McKenzie
Kyle Terry wrote: On Mon, Jan 19, 2009 at 6:31 PM, Nathan Rixham nrix...@gmail.com wrote: Eric Butera wrote: On Mon, Jan 19, 2009 at 9:13 PM, Kyle Terry k...@kyleterry.com wrote: On Mon, Jan 19, 2009 at 6:07 PM, Daniel Brown danbr...@php.net wrote: On Mon, Jan 19, 2009 at 19:58, Edmund

Re: [PHP] ANNOUNCEMENT: ModBox - Open Platform as a Service

2009-01-20 Thread cl
- Original Message - From: Kyle Terry To: c...@wizzyweb.com Cc: php-general@lists.php.net Sent: Tuesday, January 20, 2009 12:14 PM Subject: Re: [PHP] ANNOUNCEMENT: ModBox - Open Platform as a Service On Tue, Jan 20, 2009 at 9:09 AM, c...@wizzyweb.com wrote:

Re: [PHP] developers life

2009-01-20 Thread tedd
At 4:35 PM -0500 1/19/09, Robert Cummings wrote: Are you an INTP? http://www.personalitytest.net/cgi-bin/q.pl (I don't know how good the test is, I picked one at random) Cheers, Rob. I didn't pick at random, but rather what I thought -- my type: ENTJ Interesting that the top related job

Re: [PHP] developers life

2009-01-20 Thread Robert Cummings
On Tue, 2009-01-20 at 13:14 -0500, tedd wrote: At 4:35 PM -0500 1/19/09, Robert Cummings wrote: Are you an INTP? http://www.personalitytest.net/cgi-bin/q.pl (I don't know how good the test is, I picked one at random) Cheers, Rob. I didn't pick at random, but rather what I thought --

[PHP] curl can't connect to my home server

2009-01-20 Thread Rene Veerman
Hi, I've been stuck on this problem i'm having after i re-installed my linux (debian) machine last month.. I'm building a CMS with video import capabilities, but since it runs on shared hosting i need to make a cURL POST call to a URL on my home machine, which does video-conversion. This curl

Re: [PHP] developers life

2009-01-20 Thread Jason Pruim
On Jan 20, 2009, at 9:54 AM, Jason Pruim wrote: On Jan 20, 2009, at 9:18 AM, Robert Cummings wrote: On Tue, 2009-01-20 at 08:16 -0500, Jason Pruim wrote: On Jan 19, 2009, at 10:12 PM, Paul M Foster wrote: On Mon, Jan 19, 2009 at 10:23:49PM -, c...@l-i-e.com wrote: ESTJ Me too.

[PHP] Re: curl can't connect to my home server

2009-01-20 Thread Rene Veerman
OOPS :) As a second test, i changed the test-url to http://82.170.249.144:81/mediaBeez/sn.phphttp://82.170.249.144/mediaBeez/sn.php On Tue, Jan 20, 2009 at 7:33 PM, Rene Veerman rene7...@gmail.com wrote: Hi, I've been stuck on this problem i'm having after i re-installed my linux (debian)

Re: [PHP] curl can't connect to my home server

2009-01-20 Thread Eric Butera
On Tue, Jan 20, 2009 at 1:33 PM, Rene Veerman rene7...@gmail.com wrote: Hi, I've been stuck on this problem i'm having after i re-installed my linux (debian) machine last month.. I'm building a CMS with video import capabilities, but since it runs on shared hosting i need to make a cURL

[PHP] Re: curl can't connect to my home server

2009-01-20 Thread Rene Veerman
And FYI; the test-script i'm using is ?php session_write_close(); $ch = curl_init(); #set URL and other appropriate options curl_setopt($ch, CURLOPT_URL, http://82.170.249.144/mediaBeez/sn.php;); //curl_setopt($ch, CURLOPT_URL, http://www.google.de/;); //curl_setopt($ch, CURLOPT_HEADER, );

Re: [PHP] maybe we could all?

2009-01-20 Thread Daniel Brown
On Mon, Jan 19, 2009 at 22:59, Kyle Terry k...@kyleterry.com wrote: I demand Dan and Nathan to go to bed now. I consider Nathan a friend and talented programmer, but nothing could make me interested in that way, Kyle. -- /Daniel P. Brown daniel.br...@parasane.net || danbr...@php.net

Re: [PHP] Re: curl can't connect to my home server

2009-01-20 Thread Eric Butera
On Tue, Jan 20, 2009 at 1:35 PM, Rene Veerman rene7...@gmail.com wrote: OOPS :) As a second test, i changed the test-url to http://82.170.249.144:81/mediaBeez/sn.phphttp://82.170.249.144/mediaBeez/sn.php On Tue, Jan 20, 2009 at 7:33 PM, Rene Veerman rene7...@gmail.com wrote: Hi, I've

[PHP] Re: ANNOUNCEMENT: ModBox - Open Platform as a Service

2009-01-20 Thread Shawn McKenzie
c...@wizzyweb.com wrote: After posting to this list to see if it is appropriate and getting good feedback, I'm posting an announcement I think is very relative to this list as I have been using PHP ever since it was a Perl script (PHP/FI) and have been heavily influenced by it's concept and

Re: [PHP] curl can't connect to my home server

2009-01-20 Thread Jason Pruim
On Jan 20, 2009, at 1:33 PM, Rene Veerman wrote: Hi, I've been stuck on this problem i'm having after i re-installed my linux (debian) machine last month.. I'm building a CMS with video import capabilities, but since it runs on shared hosting i need to make a cURL POST call to a URL on

[PHP] Re: developers life

2009-01-20 Thread Frank Stanovcak
Nathan Rixham nrix...@gmail.com wrote in message news:32.be.60519.170f4...@pb1.pair.com... well just for the hell of it; and because I'm feeling worn.. anybody else find the following true when you're a developer? - frequent bursts of side-tracking onto more interesting subjects - vast

Re: [PHP] developers life

2009-01-20 Thread Frank Stanovcak
Robert Cummings rob...@interjinn.com wrote in message news:1232447313.30838.5.ca...@localhost... On Mon, 2009-01-19 at 22:06 +, Nathan Rixham wrote: Robert Cummings wrote: On Mon, 2009-01-19 at 21:53 +, Nathan Rixham wrote: Robert Cummings wrote: On Mon, 2009-01-19 at 21:28

Re: [PHP] Client/Server Printing

2009-01-20 Thread Philip Thompson
On Jan 20, 2009, at 9:16 AM, Paul M Foster wrote: I'd like a side check on what I'm doing to print on our internal network. We have an internal server/site which uses PHP code I've written to run the business-- invoicing, A/P, inventory, etc. Some things, like invoices and reports, need to be

Re: [PHP] Client/Server Printing

2009-01-20 Thread Török Alpár
2009/1/20 Paul M Foster pa...@quillandmouse.com I'd like a side check on what I'm doing to print on our internal network. We have an internal server/site which uses PHP code I've written to run the business-- invoicing, A/P, inventory, etc. Some things, like invoices and reports, need to be

Re: [PHP] developers life

2009-01-20 Thread tedd
At 1:25 PM -0500 1/20/09, Robert Cummings wrote: On Tue, 2009-01-20 at 13:14 -0500, tedd wrote: I didn't pick at random, but rather what I thought -- my type: ENTJ I think you're confused... I picked the test at random, I've experienced a lot of that recently. --- I've been INTP since I

Re: [PHP] mysql_query and my.cnf?

2009-01-20 Thread Ashley Sheridan
On Tue, 2009-01-20 at 17:51 +0100, Jan G.B. wrote: 2009/1/20 Waynn Lue waynn...@gmail.com: Hey guys, I've been noticing that large queries cause a connection lost to mysql server problem, so I'm trying to figure out what settings I need to tweak in my my.cnf file to get it to work.

[PHP] Re: Client/Server Printing

2009-01-20 Thread Frank Stanovcak
Paul M Foster pa...@quillandmouse.com wrote in message news:20090120151606.gu18...@quillandmouse.com... I'd like a side check on what I'm doing to print on our internal network. We have an internal server/site which uses PHP code I've written to run the business-- invoicing, A/P, inventory,

[PHP] RE: Installation problems on Vista

2009-01-20 Thread lucson pierre-charles
Dear Nathan, The short_tags is sure off but when I changed the scripts, they're still being output to the browser. These are the lines I added to the modules section: #LoadModule php5_module c:/php5/php5apache2.dll#AddType application/x-httpd-php .php#PHPIniDir c:/php5 I

[PHP] Re: Installation problems on Vista

2009-01-20 Thread Nathan Rixham
lucson pierre-charles wrote: Dear Nathan, The short_tags is sure off but when I changed the scripts, they're still being output to the browser. These are the lines I added to the modules section: #LoadModule php5_module c:/php5/php5apache2.dll #AddType

RE: [PHP] Installation problems on Vista

2009-01-20 Thread lucson pierre-charles
TG, I configured it as follows but will still not work. These are the lines I added to the modules section: #LoadModule php5_module c:/php5/php5apache2.dll#AddType application/x-httpd-php .php#PHPIniDir c:/php5 I added these lines to the DirectoryIndex: DirectoryIndex

[PHP] Curl fiel Upload

2009-01-20 Thread Matthias Laug
Hello everybody, I've got a problem using curl to upload a file. I want to send it to a form written with the Django Framework. Post Request are processed correctly, with one anomaly. This piece of code works fine curl_setopt($process, CURLOPT_POSTFIELDS, http_build_query($data)); But if i

RE: [PHP] Re: Installation problems on Vista

2009-01-20 Thread lucson pierre-charles
Nathan, When I remove the #'s, I can't have Apache to restart. I keep receiving error messages. Lucson Date: Tue, 20 Jan 2009 22:41:44 + From: nrix...@gmail.com To: lucsonpie...@hotmail.com CC: php-general@lists.php.net Subject: [PHP] Re: Installation problems on Vista

[PHP] Re: Installation problems on Vista

2009-01-20 Thread Shawn McKenzie
Nathan Rixham wrote: lucson pierre-charles wrote: Dear Nathan, The short_tags is sure off but when I changed the scripts, they're still being output to the browser. These are the lines I added to the modules section: #LoadModule php5_module c:/php5/php5apache2.dll

Re: [PHP] Re: Installation problems on Vista

2009-01-20 Thread Nathan Rixham
lucson pierre-charles wrote: Nathan, When I remove the #'s, I can't have Apache to restart. I keep receiving error messages. what are the errors? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: Installation problems on Vista

2009-01-20 Thread Shawn McKenzie
lucson pierre-charles wrote: Nathan, When I remove the #'s, I can't have Apache to restart. I keep receiving error messages. Lucson Date: Tue, 20 Jan 2009 22:41:44 + From: nrix...@gmail.com To: lucsonpie...@hotmail.com CC: php-general@lists.php.net Subject: [PHP] Re:

RE: [PHP] Re: Installation problems on Vista

2009-01-20 Thread lucson pierre-charles
Yes. It can't find a file. To: php-general@lists.php.net Date: Tue, 20 Jan 2009 17:14:14 -0600 From: nos...@mckenzies.net Subject: Re: [PHP] Re: Installation problems on Vista lucson pierre-charles wrote: Nathan, When I remove the #'s, I can't have Apache to restart. I keep receiving

Re: [PHP] Re: Installation problems on Vista

2009-01-20 Thread Shawn McKenzie
lucson pierre-charles wrote: Yes. It can't find a file. To: php-general@lists.php.net Date: Tue, 20 Jan 2009 17:14:14 -0600 From: nos...@mckenzies.net Subject: Re: [PHP] Re: Installation problems on Vista lucson pierre-charles wrote: Nathan, When I remove the #'s, I can't have Apache

[PHP] Re: Curl fiel Upload

2009-01-20 Thread Manuel Lemos
Hello, on 01/20/2009 09:10 PM Matthias Laug said the following: I've got a problem using curl to upload a file. I want to send it to a form written with the Django Framework. Post Request are processed correctly, with one anomaly. This piece of code works fine curl_setopt($process,

[PHP] Re: Client/Server Printing

2009-01-20 Thread Tony Marston
Paul M Foster pa...@quillandmouse.com wrote in message news:20090120151606.gu18...@quillandmouse.com... I'd like a side check on what I'm doing to print on our internal network. We have an internal server/site which uses PHP code I've written to run the business-- invoicing, A/P, inventory,