RE: [PHP] Re: Automatically send auth info

2004-05-12 Thread jon roig
I may be mistaken, but I think you can use CURL to grab that data. Check out the options available here: http://us3.php.net/manual/en/function.curl-setopt.php In particular, you may want to look at CURLOPT_USERPWD - jon roig --- Outgoing mail is certified Virus Free. Checked by AVG

RE: [PHP] CURL Help

2004-04-20 Thread jon roig
t;x_First_Name" => $first_name ,"x_Last_Name" => $last_name ,"x_Company" => $company ,"x_Address" => $address ,"x_City"=> $city ,"x_State" => $state ,"x_Z

RE: [PHP] Sending document to printer...

2004-04-16 Thread jon roig
I do this fairly frequently -- basically, I just have word on a windows server and use COM objects to send stuff over to the printer, using word to do the formatting. -- jon --- jon roig web developer email: [EMAIL PROTECTED] phone: 888.230.7557 -Original Message

RE: [PHP] Problems with mail and php

2004-04-12 Thread jon roig
Take a look at the email address in the log... Seems to be missing a .com. Might that be your problem? -- jon -Original Message- From: Luis Lebron [mailto:[EMAIL PROTECTED] Sent: Monday, April 12, 2004 8:48 AM To: Php-General (E-mail) Subject: [PHP] Problems with mail and php

RE: [PHP] Looking for a comprehensive PHP tutorial

2004-04-09 Thread jon roig
People always mock me when I mention it, but I really dig the "Learn in 24 Hours" books. -- jon -Original Message- From: -{ Rene Brehmer }- [mailto:[EMAIL PROTECTED] Sent: Friday, April 09, 2004 9:12 AM To: [EMAIL PROTECTED] Subject: Re: [PHP] Looking for a comprehensive PHP tu

RE: [PHP] Beginner Question

2004-04-09 Thread jon roig
Doesn't the Apple Developer Tools disk have all that stuff? http://developer.apple.com/tools/ -- jon ------- jon roig web developer email: [EMAIL PROTECTED] phone: 888.230.7557 -Original Message- From: rob [mailto:[EMAIL PROTECTED] Sent: Thursday, April 08, 20

RE: [PHP] Executing PHP shell script in PHP

2004-04-06 Thread jon roig
The shell script is in PHP as well? Presumably, you could either access it as an include or execute it using exec. -- jon --- jon roig web developer email: [EMAIL PROTECTED] phone: 888.230.7557 -Original Message- From: Brent Clark [mailto:[EMAIL PROTECTED] Sent

RE: [PHP] execute script via email?

2004-04-06 Thread jon roig
-- jon ------- jon roig web developer email: [EMAIL PROTECTED] phone: 888.230.7557 -Original Message- From: BigMark [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 06, 2004 6:27 AM To: [EMAIL PROTECTED] Subject: [PHP] execute script via email? Is there a way for me to email t

RE: [PHP] Printer Functions

2004-04-05 Thread jon roig
file it's trying to open. Version)\n"; $word->visible = true; $word->Documents->Add(); // open the file $word->Documents->Open("$saveFile"); // output the file to the default printer $word->ActiveDocument->PrintOut(1); // shutdown word $word->Quit();

RE: [PHP] How to send SMS

2004-03-29 Thread jon roig
Yeah... It depends entirely on your provider. Check this out, though -- you don't necessarily need to connect to icq/aim to send sms messages through their system. http://www.icq.com/sms/eg_networks.html -- jon ------- jon roig web developer email: [EMAIL PROTECTED]

RE: [PHP] .htaccess... why it is deleted by the server?!!!?

2004-03-04 Thread jon roig
It's probably is still there, just hiding. You could write a quick little php script to check it out if you ftp client is blocking it from being seen. -- jon ------- jon roig web developer email: [EMAIL PROTECTED] phone: 888.230.7557 -Original Message- From: R

RE: [PHP] Math weirdness with doubles...

2004-02-27 Thread jon roig
Thank you so much for the help, folks. That turned out to be weird, but correct. Rounding off to 4 decimal point places solved the problem quite nicely. -- jon -Original Message- From: Daniel Clark [mailto:[EMAIL PROTECTED] Sent: Friday, February 27, 2004 3:16 PM To: jon roig

[PHP] Math weirdness with doubles...

2004-02-27 Thread jon roig
both $currentAmount and $paidAmount are doubles, subtracting them should yield a zero, shouldn't it? -- jon --- jon roig web developer email: [EMAIL PROTECTED] phone: 888.230.7557 --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.gri

RE: [PHP] password protect a pdf

2004-02-24 Thread jon roig
ot;Content-type: application/pdf"); // grab the template file $filename="yourfile.pdf"; $fp=fopen($filename, "r"); //read our template into a variable $output=fread($fp,filesize($filename)); fclose($fp); // send the data to the browser echo $output; Hope that helps...

RE: [PHP] CURL and Cookies

2004-02-10 Thread jon roig
setopt($ch, CURLOPT_VERBOSE, 1); curl_setopt ($ch, CURLOPT_USERAGENT, "mozilla/5.0 (x11; u; linux i686; en-us; rv:1.5a) gecko/20030728 mozilla firebird/0.6.1"); -- jon --- jon roig web developer email: [EMAIL PROTECTED] phone: 888.230.7557 -Original Message---

RE: [PHP] PHP, Excel, and tab delimited files question

2004-02-09 Thread jon roig
06, 2004 5:15 PM To: jon roig Cc: [EMAIL PROTECTED] Subject: Re: [PHP] PHP, Excel, and tab delimited files question jon roig wrote: > Nah... Try it in excel itself and you'll see what I'm talking about. > You have to do it in numeric fields. > > Do this in an excel field: &

RE: [PHP] PHP, Excel, and tab delimited files question

2004-02-06 Thread jon roig
jer [mailto:[EMAIL PROTECTED] Sent: Friday, February 06, 2004 3:02 PM To: Jay Blanchard Cc: jon roig; [EMAIL PROTECTED] Subject: Re: [PHP] PHP, Excel, and tab delimited files question Do double quotes around help? Jay Blanchard wrote: > [snip] > Don't do it in the header, but in the

RE: [PHP] PHP, Excel, and tab delimited files question

2004-02-06 Thread jon roig
Don't do it in the header, but in the field itself just put a ' before the first character and excel will interpret it as a text field. -- jon ------- jon roig web developer email: [EMAIL PROTECTED] phone: 888.230.7557 -Original Message- From: Jay Blancha

RE: [PHP] Printer Friendly pages

2004-02-03 Thread jon roig
I think what you're talking about is a function of the explorer browser. The user would have to remove it him/herself. - jon -Original Message- From: Alex Hogan [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 03, 2004 8:12 AM To: PHP General list Subject: [PHP] Printer Friendly

RE: [PHP] Storing MS Word documents

2004-01-29 Thread jon roig
orth keeping in mind. -- jon ------- jon roig web developer email: [EMAIL PROTECTED] phone: 888.230.7557 -Original Message- From: bob pilly [mailto:[EMAIL PROTECTED] Sent: Thursday, January 29, 2004 5:26 AM To: Stuart Cc: [EMAIL PROTECTED] Subject: Re: [PHP] Storing MS

RE: [PHP] Script timeout?

2004-01-27 Thread jon roig
the weird browser display issues that one sometimes sees. 2) Mark your place as you go. Maybe include a field called something like lastSent. When each email goes out, mark it. That way, you can recover it later if something happens. -- jon --- jon roig web developer email

RE: [PHP] excel 2 csv 2 mysql

2003-04-03 Thread jon roig
ot; >>"fafs","sfafsa","fasfas" >>"sfafs","fssfa","fassfa" >>"sfasfa","asfafs","fasfas" >>"asffas","sfaaf","sfafsa" >>"fssaf","asffsa"

RE: [PHP] excel 2 csv 2 mysql

2003-03-31 Thread jon roig
ince users to upload csv files. - jon ----- jon roig senior manager, online production epilepsy foundation http://jonroig.com -Original Message- From: daniel [mailto:[EMAIL PROTECTED] Sent: Monday, March 31, 2003 7:48 PM To: [EMAIL PROTECTED] Subject: [PHP] excel 2 csv 2

RE: [PHP] COM

2003-03-31 Thread jon roig
this, which is a good example of how to use odbc in php: http://php.weblogs.com/odbc Also, is it giving you an error or just not returning results? -- jon ----- jon roig senior manager, online production epilepsy foundation http://jonroig.com -Original Message- From

RE: [PHP] Excel

2003-03-31 Thread jon roig
I've got one here -- http://jonroig.com/modules.php?op=modload&name=News&file=article&sid=55 (Watch out, url may wrap wrong) That is, if you're just looking to export data to excel... -- jon -Original Message- From: Evan Nemerson [mailto:[EMAIL PROTECTED] Sent: Thursday, March 2

RE: [PHP] IF statement madness

2003-03-14 Thread jon roig
What happens if you change $target to 216.0? -- jon -Original Message- From: James E Hicks III [mailto:[EMAIL PROTECTED] Sent: Friday, March 14, 2003 1:22 PM To: [EMAIL PROTECTED] Subject: [PHP] IF statement madness Help save my sanity! What can I do to the IF statement in the f

RE: [PHP] postnuke / geekware?

2002-07-18 Thread jon roig
I've been reasonably happy with postnuke -- easy to go in and modify stuff yourself. htp://jonroig.com ... but maybe that's just me. I'd actually be curious as to what kind experience people have had with the other systems. -- jon -Original Message- From: jaxon [mailto:[EMAIL P

RE: [PHP] PHP meetup

2002-07-12 Thread jon roig
Nope... didn't crosspost anywhere... (I'm only subscribed to the general list.) My problem is similar -- I'm in Philadelphia and there doesn't appear to be a group here at all. There's some crossover with the local linux users group, but not a lot. -- jon -Original Message- Fro

[PHP] PHP meetup

2002-07-12 Thread jon roig
Hey... Want to meet other PHP developers in your area? Check out: http://php.meetup.com/ Pretty nifty idea... especially given the lack of user groups in the U.S. -- jon - jon roig ([EMAIL PROTECTED]) developer, openRealty http://jonroig.com/freecode/openrealty/ -- PHP