RE: Re[2]: [PHP] Help needed with Curl

2007-07-24 Thread Bosky, Dave
No I don't have a local certificate created.
I'm only need to do a post using xml-rpc and I have SSLVerifyPeer turned
off. This turns off client certificate authentication 
$xmlrpc_client->setSSLVerifyPeer(0); 


-Original Message-
From: Richard Davey [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, July 24, 2007 10:56 AM
To: Daniel Brown
Cc: Bosky, Dave; php-general@lists.php.net
Subject: Re[2]: [PHP] Help needed with Curl

Hi Daniel,

Tuesday, July 24, 2007, 2:34:06 PM, you wrote:

> In order to enable cURL on a Windows box, you have to copy 
> libeay32.dll and ssleay32.dll from the DLL folder of the PHP/ binary 
> package to the SYSTEM folder. (to be safe, you may want to do both 
> C:\WINDOWS\SYSTEM\ and C:\WINDOWS\SYSTEM32\, but I think Windows 
> allows you to `copy *.dll C:\%SYSTEM% - I'm a *nix guy, but I think I 
> remember doing that on Windows a while back).

*Never* put PHP DLLs into the Windows System folder.
It's neither required, nor sensible.

Keep them where they belong - in your PHP folder.

> Then edit php.ini to remove the semicolon from the front of this
> line: extension=php_curl.dll

He must have already done this to see the output in phpinfo.

Dave - As well as the OpenSSL DLL do you also have a local certificate
created? (curl-ca-bundle.crt by default)

http://curl.netmirror.org/docs/sslcerts.html

Cheers,

Rich
--
Zend Certified Engineer
http://www.corephp.co.uk

"Never trust a computer you can't throw out of a window"


**
HTC Disclaimer:  The information contained in this message may be privileged 
and confidential and protected from disclosure. If the reader of this message 
is not the intended recipient, or an employee or agent responsible for 
delivering this message to the intended recipient, you are hereby notified that 
any dissemination, distribution or copying of this communication is strictly 
prohibited.  If you have received this communication in error, please notify us 
immediately by replying to the message and deleting it from your computer.  
Thank you.
**

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] Help needed with Curl

2007-07-24 Thread Bosky, Dave
Yes. The script is the same on both machines.
I can pull up a web browser and connect to the ssl url that I'm trying
to connect using php/curl. 
The only DLLs I need to add are libeay.dll, ssleay32.dll, right?

I'm running Windows 2003 Server with IIS 6.0



-Original Message-
From: Daniel Brown [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, July 24, 2007 9:01 AM
To: Bosky, Dave
Cc: php-general@lists.php.net
Subject: Re: [PHP] Help needed with Curl

On 7/24/07, Bosky, Dave <[EMAIL PROTECTED]> wrote:
>
> I downloaded a copy of PHP Version 5.2.3 and installed it on Windows 
> 2003.
> Everything seems to work fine except for Curl.
> --
> PHP Version 5.2.3
> cURL support  enabled
> cURL Information  libcurl/7.16.0 OpenSSL/0.9.8e zlib/1.2.3
> --
> It keeps returning this error message.
> Reason 'CURL error: error:140770FC:SSL 
> routines:SSL23_GET_SERVER_HELLO:unknown protocol'
>
>
> The code works one machine that has the following setup
> --
> PHP Version 5.1.0
> cURL support  enabled
> cURL Information  libcurl/7.14.0 OpenSSL/0.9.8b zlib/1.2.3
> --
>
> Do I need to download any other packages for Curl to work? What the 
> heck am I missing?
>
> Thanks,
> Dave
>
> **
> HTC Disclaimer:  The information contained in this message may be
privileged and confidential and protected from disclosure. If the reader
of this message is not the intended recipient, or an employee or agent
responsible for delivering this message to the intended recipient, you
are hereby notified that any dissemination, distribution or copying of
this communication is strictly prohibited.  If you have received this
communication in error, please notify us immediately by replying to the
message and deleting it from your computer.  Thank you.
> **
>
> --
> PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: 
> http://www.php.net/unsub.php
>
>

That actually looks like an OpenSSL problem (despite the fact that
PHP 5.2.3 does have a lot of poorly-made changes, in my opinion),
suggesting that it's attempting to provide (or retrieve) something via
an SSL/HTTPS connection where there is no encryption.

Is the script you're attempting to run the exact same on both
machines?  Can Machine A connect to Machine B and vice-versa using
cURL/SSL in combination with your script?  What do the Apache logs say?

--
Daniel P. Brown
[office] (570-) 587-7080 Ext. 272
[mobile] (570-) 766-8107

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Help needed with Curl

2007-07-24 Thread Bosky, Dave

I downloaded a copy of PHP Version 5.2.3 and installed it on Windows
2003. 
Everything seems to work fine except for Curl. 
--
PHP Version 5.2.3
cURL support  enabled  
cURL Information  libcurl/7.16.0 OpenSSL/0.9.8e zlib/1.2.3  
--
It keeps returning this error message.
Reason 'CURL error: error:140770FC:SSL
routines:SSL23_GET_SERVER_HELLO:unknown protocol'


The code works one machine that has the following setup 
--
PHP Version 5.1.0
cURL support  enabled  
cURL Information  libcurl/7.14.0 OpenSSL/0.9.8b zlib/1.2.3  
--

Do I need to download any other packages for Curl to work? What the heck
am I missing?

Thanks,
Dave

**
HTC Disclaimer:  The information contained in this message may be privileged 
and confidential and protected from disclosure. If the reader of this message 
is not the intended recipient, or an employee or agent responsible for 
delivering this message to the intended recipient, you are hereby notified that 
any dissemination, distribution or copying of this communication is strictly 
prohibited.  If you have received this communication in error, please notify us 
immediately by replying to the message and deleting it from your computer.  
Thank you.
**

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] php script from bat file

2007-06-12 Thread Bosky, Dave
What's the syntax I need to use to execute a PHP script from a batch
file?

 

PHP is installed in 'C:\PHP' and the script I want to run is in
'C:\Inetpub\scripts\run.php'.

 

I've created a Windows batch file which executes from the 'C:\PHP'
directory and contains a single line 'php.exe
C:\Inetpub\scripts\run.php'.

 

It seems to run ok but nothing happens. Any ideas?

 

Thanks,

Dave


**
HTC Disclaimer:  The information contained in this message may be privileged 
and confidential and protected from disclosure. If the reader of this message 
is not the intended recipient, or an employee or agent responsible for 
delivering this message to the intended recipient, you are hereby notified that 
any dissemination, distribution or copying of this communication is strictly 
prohibited.  If you have received this communication in error, please notify us 
immediately by replying to the message and deleting it from your computer.  
Thank you.
**



[PHP] logging of sql queries - success/failed

2007-06-07 Thread Bosky, Dave
I've got a script that imports several CSV files via the Load Data File
command. 

I need to know if each import query was successful or failed.

 

Is there a way to log the success/failure of each query including how
many rows were inserted? 

 

Thanks,
Dave

 


**
HTC Disclaimer:  The information contained in this message may be privileged 
and confidential and protected from disclosure. If the reader of this message 
is not the intended recipient, or an employee or agent responsible for 
delivering this message to the intended recipient, you are hereby notified that 
any dissemination, distribution or copying of this communication is strictly 
prohibited.  If you have received this communication in error, please notify us 
immediately by replying to the message and deleting it from your computer.  
Thank you.
**



[PHP] scheduling a script to check a directory for files

2007-05-30 Thread Bosky, Dave
Greetings!

 

I need to write a script to import '.csv' data files into MySQL.

My question is how can I have a script execute and check a directory
every 4 hours for any '.csv' files and if it finds any calls a function
to import them?

 

Thanks,

Dave


**
HTC Disclaimer:  The information contained in this message may be privileged 
and confidential and protected from disclosure. If the reader of this message 
is not the intended recipient, or an employee or agent responsible for 
delivering this message to the intended recipient, you are hereby notified that 
any dissemination, distribution or copying of this communication is strictly 
prohibited.  If you have received this communication in error, please notify us 
immediately by replying to the message and deleting it from your computer.  
Thank you.
**



[PHP] convert numerical day of week

2007-05-22 Thread Bosky, Dave
How can I convert the numerical day of week to the string version?

Example, if the day of the week is 1 I would like to print out 'Sunday'.

 

Thanks,

Dave

 


**
HTC Disclaimer:  The information contained in this message may be privileged 
and confidential and protected from disclosure. If the reader of this message 
is not the intended recipient, or an employee or agent responsible for 
delivering this message to the intended recipient, you are hereby notified that 
any dissemination, distribution or copying of this communication is strictly 
prohibited.  If you have received this communication in error, please notify us 
immediately by replying to the message and deleting it from your computer.  
Thank you.
**



[PHP] reading Paradox (.db) files

2007-05-17 Thread Bosky, Dave
Has anyone had any experience opening and reading Paradox (.db) files
using PHP?

Are there any plug-ins/extensions available that someone can recommend?

 

Thanks,

Dave

 


**
HTC Disclaimer:  The information contained in this message may be privileged 
and confidential and protected from disclosure. If the reader of this message 
is not the intended recipient, or an employee or agent responsible for 
delivering this message to the intended recipient, you are hereby notified that 
any dissemination, distribution or copying of this communication is strictly 
prohibited.  If you have received this communication in error, please notify us 
immediately by replying to the message and deleting it from your computer.  
Thank you.
**



[PHP] import dbf files

2007-05-11 Thread Bosky, Dave
My goal is to be able to import dbf files into MySQL on a nightly basis.


 

Can I enable dbase support by uncomment the dbase extension entry in the
php.ini file or is there more to it?

 

Are there any working examples available that read and import dbf files?

 

Thanks,

Dave


**
HTC Disclaimer:  The information contained in this message may be privileged 
and confidential and protected from disclosure. If the reader of this message 
is not the intended recipient, or an employee or agent responsible for 
delivering this message to the intended recipient, you are hereby notified that 
any dissemination, distribution or copying of this communication is strictly 
prohibited.  If you have received this communication in error, please notify us 
immediately by replying to the message and deleting it from your computer.  
Thank you.
**



[PHP] function to compare ip addr to a ip range>

2005-10-13 Thread Bosky, Dave
Does anyone have a function that will check if an ip address falls with
a starting/ending ip address range>>

 

Thanks,

Dave

 

 


**
HTC Disclaimer:  The information contained in this message may be privileged 
and confidential and protected from disclosure. If the reader of this message 
is not the intended recipient, or an employee or agent responsible for 
delivering this message to the intended recipient, you are hereby notified that 
any dissemination, distribution or copying of this communication is strictly 
prohibited.  If you have received this communication in error, please notify us 
immediately by replying to the message and deleting it from your computer.  
Thank you.
**



[PHP] Optimize PDF on upload?

2005-10-12 Thread Bosky, Dave
Any PHP modules available that will optimize PDF files on upload?

 

Thanks,

D


**
HTC Disclaimer:  The information contained in this message may be privileged 
and confidential and protected from disclosure. If the reader of this message 
is not the intended recipient, or an employee or agent responsible for 
delivering this message to the intended recipient, you are hereby notified that 
any dissemination, distribution or copying of this communication is strictly 
prohibited.  If you have received this communication in error, please notify us 
immediately by replying to the message and deleting it from your computer.  
Thank you.
**



[PHP] rename an uploaded file.

2005-08-09 Thread Bosky, Dave
I seem to be having some trouble renaming a file after uploading it.

It always returns a warning message indicating I have an invalid
attribute in my rename statement.

 

Thanks,

Dave

 

---

Example:

 

$old = 'C:\\homedirectory\uploadedfiles\\newfile.gif';

$new = 'C:\\homedirectory\\uploadedfiles\\2005-08-05-09:00:00.gif';

move_uploaded_file(temp fileuploaded, $old); 

rename($old,$new);

 

 

 

 

 

 



HTC Disclaimer: The information contained in this message may be privileged and 
confidential and protected from disclosure. If the reader of this message is 
not the intended recipient, or an employee or agent responsible for delivering 
this message to the intended recipient, you are hereby notified that any 
dissemination, distribution or copying of this communication is strictly 
prohibited.  If you have received this communication in error, please notify us 
immediately by replying to the message and deleting it from your computer.  
Thank you.


RE: [PHP] How to convert documents to PDF using PHP

2005-06-23 Thread Bosky, Dave
I'll be working on a Win 2003 server box. I was reading about a COM
object from verypdf.com. Can you recommend any specific COM objects?

Thanks..

-Original Message-
From: Rory Browne [mailto:[EMAIL PROTECTED] 
Sent: Thursday, June 23, 2005 9:13 AM
To: Bosky, Dave
Cc: php-general@lists.php.net
Subject: Re: [PHP] How to convert documents to PDF using PHP

What OS are you using?

If you're on Win, then you may be able to do something with COM and a
PDF printer driver(pdfcreator comes to mind - check out theopencd)

If you're not, then you may be able to do something similar with OOo
and UNO, although Python may be a better choice than PHP, since there
is a native Python / UNO module, where as there is no PHP Uno module
afaik. If it _has_ to be PHP based, then perhaps you could make an
extension to interact with UNO in C.

On 6/22/05, Bosky, Dave <[EMAIL PROTECTED]> wrote:
> I need to find a way to allow users to select multiple files from a
list
> and generate a single PDF file from them.
> 
> The documents are limited to the following formats: MS Word, MS
> PowerPoint, MS Excel, Plain Text, gif/jpeg images.
> 
> 
> 
> Are there any PHP classes or modules that exist which can tackle this
> tough task?
> 
> 
> 
> Thanks,
> 
> Dave
> 
> 
> 
> 
> 
> HTC Disclaimer:  The information contained in this message may be
privileged and confidential and protected from disclosure. If the reader
of this message is not the intended recipient, or an employee or agent
responsible for delivering this message to the intended recipient, you
are hereby notified that any dissemination, distribution or copying of
this communication is strictly prohibited.  If you have received this
communication in error, please notify us immediately by replying to the
message and deleting it from your computer.  Thank you.
> 
>

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] How to convert documents to PDF using PHP

2005-06-22 Thread Bosky, Dave
I need to find a way to allow users to select multiple files from a list
and generate a single PDF file from them.

The documents are limited to the following formats: MS Word, MS
PowerPoint, MS Excel, Plain Text, gif/jpeg images.

 

Are there any PHP classes or modules that exist which can tackle this
tough task?

 

Thanks,

Dave

 



HTC Disclaimer:  The information contained in this message may be privileged 
and confidential and protected from disclosure. If the reader of this message 
is not the intended recipient, or an employee or agent responsible for 
delivering this message to the intended recipient, you are hereby notified that 
any dissemination, distribution or copying of this communication is strictly 
prohibited.  If you have received this communication in error, please notify us 
immediately by replying to the message and deleting it from your computer.  
Thank you.


[PHP] Add Excel/Word documents to a dynamic pdf.

2005-06-08 Thread Bosky, Dave
I know how to create dynamic PDF's on the fly using the PDF library
functions.

Is there a way I can add Excel and Word documents to the dynamic PDF as
well?

 

Here's what I need to do.

Basically I have a master list of available files in the following
formats: text, JPEG images, Excel, Powerpoint, and Word. The user
selects all the documents they need from the list and then I need to
build a dynamic PDF containing all the selected files.

 

Is this possible? 

 

Thanks,

Dave

 

 

 

Regards,

Dave Bosky
Programmer/Analyst
Horry Telephone Cooperative, Inc.
3480 Highway 701 N
Conway, SC 29526
Email: [EMAIL PROTECTED] 
Business: 843.369.8613
Fax: 843.369.7188

 



HTC Disclaimer:  The information contained in this message may be privileged 
and confidential and protected from disclosure. If the reader of this message 
is not the intended recipient, or an employee or agent responsible for 
delivering this message to the intended recipient, you are hereby notified that 
any dissemination, distribution or copying of this communication is strictly 
prohibited.  If you have received this communication in error, please notify us 
immediately by replying to the message and deleting it from your computer.  
Thank you.


[PHP] protect file access outside webroot

2005-06-06 Thread Bosky, Dave
If I want to protect document from being directly accessed from the web
and only allow them to be served by a file, what's the best location to
upload them?

Currently I upload them the htsdata directory, is this the best
location? 

 

Thanks.

Dave



HTC Disclaimer:  The information contained in this message may be privileged 
and confidential and protected from disclosure. If the reader of this message 
is not the intended recipient, or an employee or agent responsible for 
delivering this message to the intended recipient, you are hereby notified that 
any dissemination, distribution or copying of this communication is strictly 
prohibited.  If you have received this communication in error, please notify us 
immediately by replying to the message and deleting it from your computer.  
Thank you.


[PHP] need class to send email w/attachments

2005-05-06 Thread Bosky, Dave
Any recommendations for PHP classes that will send email messages with
attachments?

Thanks,

Dave

 

 



HTC Disclaimer:  The information contained in this message may be privileged 
and confidential and protected from disclosure. If the reader of this message 
is not the intended recipient, or an employee or agent responsible for 
delivering this message to the intended recipient, you are hereby notified that 
any dissemination, distribution or copying of this communication is strictly 
prohibited.  If you have received this communication in error, please notify us 
immediately by replying to the message and deleting it from your computer.  
Thank you.


[PHP] help formatting a mysql datetime variable

2005-04-29 Thread Bosky, Dave
I'm trying to get a mysql datetime variable called $cdate formatted so
it will print:

Thursday, April 28, 2005 at 8:00:00 PM Eastern Time

I tried the following but it's not perfect.

--
$newDate = date('I, F d, Y at g:i:s A T', $cdate);
echo $newDate;
--


Thanks,

Dave

 

 



HTC Disclaimer:  The information contained in this message may be privileged 
and confidential and protected from disclosure. If the reader of this message 
is not the intended recipient, or an employee or agent responsible for 
delivering this message to the intended recipient, you are hereby notified that 
any dissemination, distribution or copying of this communication is strictly 
prohibited.  If you have received this communication in error, please notify us 
immediately by replying to the message and deleting it from your computer.  
Thank you.


[PHP] encrypting pwds using blowfish encryption

2005-04-26 Thread Bosky, Dave
Does anyone have a simple code example of encrypting passwords using the
blowfish encryption method?

I've only used blowfish with Java and I'm unsure of the syntax. 

 

Thanks,

Dave



HTC Disclaimer:  The information contained in this message may be privileged 
and confidential and protected from disclosure. If the reader of this message 
is not the intended recipient, or an employee or agent responsible for 
delivering this message to the intended recipient, you are hereby notified that 
any dissemination, distribution or copying of this communication is strictly 
prohibited.  If you have received this communication in error, please notify us 
immediately by replying to the message and deleting it from your computer.  
Thank you.


[PHP] mysql blob datatype for documents

2005-04-18 Thread Bosky, Dave
Would it be better to store uploaded pdf, word, or excel documents in a
MySql blob field rather than keeping them in a directory?

I really want to secure the documents and limit document access to
specific users.

 

Curious

Dave



HTC Disclaimer:  The information contained in this message may be privileged 
and confidential and protected from disclosure. If the reader of this message 
is not the intended recipient, or an employee or agent responsible for 
delivering this message to the intended recipient, you are hereby notified that 
any dissemination, distribution or copying of this communication is strictly 
prohibited.  If you have received this communication in error, please notify us 
immediately by replying to the message and deleting it from your computer.  
Thank you.


[PHP] RegEx help

2005-04-14 Thread Bosky, Dave
I wanted to create a regex that force a PHP form text field to meet the
following requirements:

a. Must contain an 1 uppercase letter. [A-Z]

b. Must contain 1 digit. [0-9]

c. Must be a minimum of 7 characters in length. {7}

 

I'm not sure of how to build the correct syntax for using all 3
requirements together.

Any help?

 

Thanks,

Dave

 

 



HTC Disclaimer:  The information contained in this message may be privileged 
and confidential and protected from disclosure. If the reader of this message 
is not the intended recipient, or an employee or agent responsible for 
delivering this message to the intended recipient, you are hereby notified that 
any dissemination, distribution or copying of this communication is strictly 
prohibited.  If you have received this communication in error, please notify us 
immediately by replying to the message and deleting it from your computer.  
Thank you.


[PHP] Password expiration script

2005-03-31 Thread Bosky, Dave
I'm looking for a script that would require a user to change their password
every 30 days. Does anyone use a script that has functionality similar to
what I'm looking for?

 

Thanks,

Dave

 



HTC Disclaimer:  The information contained in this message may be privileged 
and confidential and protected from disclosure. If the reader of this message 
is not the intended recipient, or an employee or agent responsible for 
delivering this message to the intended recipient, you are hereby notified that 
any dissemination, distribution or copying of this communication is strictly 
prohibited.  If you have received this communication in error, please notify us 
immediately by replying to the message and deleting it from your computer.  
Thank you.


[PHP] function to resize images

2005-02-28 Thread Bosky, Dave
Does anyone have a nice function that will resize an uploaded image to
specific width/height dimensions?

I wanted to find something that would work for only GIF and JPG image types.
I've converted my shopping cart

application from Cold Fusion to PHP and need to create thumbnails and reduce
the size of large uploaded images.

 

I've already done a google search and found an example but can't get it to
work for some reason and it includes a 

bunch of other stuff that's not needed and too much trouble to remove.

 

 

Thanks,

Dave

 



HTC Disclaimer:  The information contained in this message may be privileged 
and confidential and protected from disclosure. If the reader of this message 
is not the intended recipient, or an employee or agent responsible for 
delivering this message to the intended recipient, you are hereby notified that 
any dissemination, distribution or copying of this communication is strictly 
prohibited.  If you have received this communication in error, please notify us 
immediately by replying to the message and deleting it from your computer.  
Thank you.


[PHP] PHP book recommendations>

2005-02-14 Thread Bosky, Dave
I'm looking for an easy to read PHP book that will help me learn a solid
foundation in PHP.

I'm already familiar with the language but want to make sure I'm coding in
the most efficient manner.

What's a few of the better books out there?



HTC Disclaimer:  The information contained in this message may be privileged 
and confidential and protected from disclosure. If the reader of this message 
is not the intended recipient, or an employee or agent responsible for 
delivering this message to the intended recipient, you are hereby notified that 
any dissemination, distribution or copying of this communication is strictly 
prohibited.  If you have received this communication in error, please notify us 
immediately by replying to the message and deleting it from your computer.  
Thank you.


[PHP] mail() function

2005-02-09 Thread Bosky, Dave
I can't seem to get the mail function to work.

Is there a way to authenticate before sending mail, I believe this is my
issue.

 

Also in my php.ini file the parameter sendmail_path is empty. Is this a
required parameter for sending mail?

I'm using Windows/IIS.

 

Thanks,

Dave

 



HTC Disclaimer:  The information contained in this message may be privileged 
and confidential and protected from disclosure. If the reader of this message 
is not the intended recipient, or an employee or agent responsible for 
delivering this message to the intended recipient, you are hereby notified that 
any dissemination, distribution or copying of this communication is strictly 
prohibited.  If you have received this communication in error, please notify us 
immediately by replying to the message and deleting it from your computer.  
Thank you.


[PHP] Student Suspended Over PHP use.

2005-02-09 Thread Bosky, Dave








I just ran across this interesting article from awhile back.
Pretty funny

http://bbspot.com/News/2000/6/php_suspend.html

Topeka, KS - High school sophomore
Brett Tyson was suspended today after teachers learned he may be using PHP.

"A teacher overheard him say that he
was using PHP, and as part of our Zero-Tolerance policy against drug use, he
was immediately suspended. No questions asked," said Principal Clyde
Thurlow.   "We're not quite sure what PHP is, but we suspect it may
be a derivative of PCP, or maybe a new designer drug like GHB."  

Parents are frightened by the discovery
of this new menace in their children's school, and are demanding the school do
something.  "We heard that he found out about PHP at school on the
internet.  There may even be a PHP web ring operating on school
grounds," said irate parent Carol Blessing.  "School is supposed
to be teaching our kids how to read and write.  Not about dangerous drugs
like PHP."

In response to parental demands the school has
reconfigured its internet WatchDog software to block access to all internet
sites mentioning PHP.  Officials say this should prevent any other
students from falling prey like Brett Tyson did.  They have also stepped
up locker searches and brought in drug sniffing dogs.

Interviews with students suggested that PHP
use is wide spread around the school, but is particularly concentrated in the
geeky nerd population.  When contacted by BBspot.com, Brett Tyson said,
"I don't know what the hell is going on dude, but this suspension gives me
more time for fraggin'.  Yee haw!"

PHP is a hypertext preprocessor, which sounds
very dangerous.  It is believed that many users started by using Perl and
moved on to the more powerful PHP.  For more information on how to
recognize if your child may be using PHP please visit http://www.php.net. 

 

 

 





HTC Disclaimer:  The information contained in this message may be privileged and confidential and protected from disclosure. If the reader of this message is not the intended recipient, or an employee or agent responsible for delivering this message to the intended recipient, you are hereby notified that any dissemination, distribution or copying of this communication is strictly prohibited.  If you have received this communication in error, please notify us immediately by replying to the message and deleting it from your computer.  Thank you.





[PHP] connection pooling

2005-02-04 Thread Bosky, Dave
What options are available regarding connection pooling using PHP?

I understand how to accomplish this using Java but PHP is another language.

 

Thanks.

 



HTC Disclaimer:  The information contained in this message may be privileged 
and confidential and protected from disclosure. If the reader of this message 
is not the intended recipient, or an employee or agent responsible for 
delivering this message to the intended recipient, you are hereby notified that 
any dissemination, distribution or copying of this communication is strictly 
prohibited.  If you have received this communication in error, please notify us 
immediately by replying to the message and deleting it from your computer.  
Thank you.


RE: [PHP] Best method to store shopping cart contents

2005-01-28 Thread Bosky, Dave
Do you have a simple example of how to create a multi-dimensional array and
store it in a session variable?

Regards,
~Dave

-
Play more pool! www.mbpoolplayers.com
-

-Original Message-
From: Richard Lynch [mailto:[EMAIL PROTECTED] 
Sent: Friday, January 28, 2005 11:35 AM
To: Bosky, Dave
Cc: php-general@lists.php.net
Subject: Re: [PHP] Best method to store shopping cart contents

Bosky, Dave wrote:
> I've written some nice shopping carts in Cold Fusion that use a session
> variable to hold an array of structures.
>
> I need to convert the shopping cart to PHP but I'm unsure of how to store
> the cart's contents using PHP.
>
> Should I create a multi-dimensional array and store it a session variable?

Sounds like a plan to me.

> Any good tutorials/examples on creating shopping cart apps using PHP?

There are a few zillion, actually...

Just Google for "PHP shopping cart" and you should find a ton of source
code, or a hundred carts you could just start using instead of
re-inventing the wheel.

-- 
Like Music?
http://l-i-e.com/artists.htm


HTC Disclaimer:  The information contained in this message may be privileged 
and confidential and protected from disclosure. If the reader of this message 
is not the intended recipient, or an employee or agent responsible for 
delivering this message to the intended recipient, you are hereby notified that 
any dissemination, distribution or copying of this communication is strictly 
prohibited.  If you have received this communication in error, please notify us 
immediately by replying to the message and deleting it from your computer.  
Thank you.

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Best method to store shopping cart contents

2005-01-28 Thread Bosky, Dave
I've written some nice shopping carts in Cold Fusion that use a session
variable to hold an array of structures.

I need to convert the shopping cart to PHP but I'm unsure of how to store
the cart's contents using PHP.

 

Should I create a multi-dimensional array and store it a session variable?

 

Any good tutorials/examples on creating shopping cart apps using PHP?

 

Thanks,

Dave

 

 



HTC Disclaimer:  The information contained in this message may be privileged 
and confidential and protected from disclosure. If the reader of this message 
is not the intended recipient, or an employee or agent responsible for 
delivering this message to the intended recipient, you are hereby notified that 
any dissemination, distribution or copying of this communication is strictly 
prohibited.  If you have received this communication in error, please notify us 
immediately by replying to the message and deleting it from your computer.  
Thank you.


[PHP] Recommend a free shopping cart app?

2004-12-27 Thread Bosky, Dave
I was looking for a nice 'Free' shopping cart app that I can plug into my
website and wanted some recommendations.

I've written some good ones in Cold Fusion and don't feel like converting
them to PHP at the moment.

 

Thanks,

Dave

 



HTC Disclaimer:  The information contained in this message may be privileged 
and confidential and protected from disclosure. If the reader of this message 
is not the intended recipient, or an employee or agent responsible for 
delivering this message to the intended recipient, you are hereby notified that 
any dissemination, distribution or copying of this communication is strictly 
prohibited.  If you have received this communication in error, please notify us 
immediately by replying to the message and deleting it from your computer.  
Thank you.


[PHP] Best and easy html text area replacement tool?

2004-10-04 Thread Bosky, Dave
I'm looking for an easy to use html textarea replacement script and figured
this was the place to locate the most popular.

 

Thanks,

Dave

 

 

 



HTC Disclaimer:  The information contained in this message may be privileged and 
confidential and protected from disclosure. If the reader of this message is not the 
intended recipient, or an employee or agent responsible for delivering this message to 
the intended recipient, you are hereby notified that any dissemination, distribution 
or copying of this communication is strictly prohibited.  If you have received this 
communication in error, please notify us immediately by replying to the message and 
deleting it from your computer.  Thank you.