[PHP-WIN] About PDF

2001-02-16 Thread Antonio Lopez
I´m making a Pdf document with Php. Questions: · ¿Can i make TABLES with Pdf? (Something like Html...) · I'm going to write a text, but i don´t know the lenght of this text. What i want is that Pdf breaks the line and jumps to the next line automatically. ¿How can i make this with Pdf func

php-windows Digest 16 Feb 2001 08:24:07 -0000 Issue 448

2001-02-16 Thread php-windows-digest-help
php-windows Digest 16 Feb 2001 08:24:07 - Issue 448 Topics (messages 5580 through 5588): Apache PHP/Win98 Binaries? 5580 by: Lee Goddard New Homepage 5581 by: Charles Williams \( CEO ACNS \) Forgot something 5582 by: Charles Williams \( CEO ACNS \) 5583 by:

RE: [PHP-WIN] CGI error: incomplete headers?

2001-02-16 Thread Paco Ortiz
Hi: I don't know whether this is your case or not, but this happened me once I didn't properly URLencoded the variables within my query string (GET method), and some of those variables had blank spaces. Greetings, F.J. Ortiz - Mensaje original - De: "Chaz Yoon" <[EMAIL PROT

[PHP-WIN] Re: About PDF

2001-02-16 Thread Rainer Schaaf
> I´m making a Pdf document with Php. > > Questions: > > · ¿Can i make TABLES with Pdf? > (Something like Html...) > Yes and no. There is no special highlevel API defined for the PDFlib functions to do that. So you have to do the programin on your own. > > · I'm going to write a text, but i don

[PHP-WIN] remote_user

2001-02-16 Thread Paul Mileham
Now look - this is utterly ridiculous. Last week, $HTTP_REMOTE_USER was working perfectly, and now - zilch. I've changed nothing, so far as I know. Could it be anything to do with our IT brigade installing a firewall? Dunno. Any help gratefully received. paul ___

Re: [PHP-WIN] Apache PHP/Win98 Binaries?

2001-02-16 Thread Madhon
you can get a version from www.php4win.de i also have v4.04 compiled with eapi if you wont it i havent been able to get 4.04pl1 to compile yet has anybody else "Lee Goddard" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > > Does anyone have a URL of PHP4 compi

Re: [PHP-WIN] Apache PHP/Win98 Binaries?

2001-02-16 Thread Daniel Beulshausen
At 11:44 16.02.2001 +, Madhon wrote: >you can get a version from www.php4win.de > >i also have v4.04 compiled with eapi if you wont it >i havent been able to get 4.04pl1 to compile yet has anybody else you'll have to patch the zend source. i believe in zend_ini.c/zend_ini.h some of the neede

Re: [PHP-WIN] Apache PHP/Win98 Binaries?

2001-02-16 Thread Madhon
when i say not been able to compile 4.04pl1 i only refere to the apache module, i can get t php.exe, php4ts.dll and php4isapi.dll to compile ok but the apache module is the problem "Daniel Beulshausen" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > At 11:44 16

[PHP-WIN] Regarding new homepage

2001-02-16 Thread Charles Williams \( CEO ACNS \)
WOW! Thanks for the response on my page (didn't think it would go over that good. hehe). Nice to know so many of you like the design (not mine though. hehe. It's called "Harpia" and it's free. If you'd like more info let me know). The content of course will grow as more people contribute. Th

RE: [PHP-WIN] remote_user

2001-02-16 Thread Ignatius Teo
Absolutely riduculous! Dang IT brigades! They've probably set it so the firewall prevents $HTTP_REMOTE_USER from being set. However, $REMOTE_USER may still work... Ignatius > -Original Message- > From: Paul Mileham [mailto:[EMAIL PROTECTED]] > Sent: Friday, 16 February 2001 22:32 > To:

Re: [PHP-WIN] Apache PHP/Win98 Binaries?

2001-02-16 Thread Daniel Beulshausen
At 12:42 16.02.2001 +, Madhon wrote: >when i say not been able to compile 4.04pl1 i only refere to the apache >module, i can get t php.exe, php4ts.dll and php4isapi.dll to compile ok >but the apache module is the problem i got that, and the fix is to export the ini function from zend which a

[PHP-WIN] My Dilema

2001-02-16 Thread Ben Cairns
I have a slight problem with this I am returning numerical values (i.e. 22.64, 2.54 etc. All with two Decimal Places) from a database. I then want to add these together. But, I don't know how many rows there are, so I cant do: $row+$row There may only be one row, or there may be hundreds of

Re: [PHP-WIN] My Dilema

2001-02-16 Thread Tom Mathews
SELECT SUM(Row_x) FROM Table_y; Tom Ben Cairns wrote: > I have a slight problem with this > > I am returning numerical values (i.e. 22.64, 2.54 etc. All with two Decimal > Places) from a database. I then want to add these together. > > But, I don't know how many rows there are, so I cant do

RE: [PHP-WIN] My Dilema

2001-02-16 Thread Asendorf, John
Which database are you using? It will make a difference in how to do this. Generally, you'll want some type of FOR loop: ATTENTION: THIS IS NOT REAL CODE, JUST AN IDEA $num_results = count (results); for ( $i=1 ; $i <= $num_results ; $i++ ) { fetch_row ( results ); $grand_

RE: [PHP-WIN] My Dilema

2001-02-16 Thread Asendorf, John
Or like Tom suggested, you can do it with SQL (I'm an idiot... seeing as how I did this just two days ago) - John Asendorf - [EMAIL PROTECTED] Web Applications Developer http://www.lcounty.com - NEW FEATURES ADDED DAILY! Licking County, Ohio, USA 740-349-3631 Ipsa scientia pot

Re: [PHP-WIN] Apache PHP/Win98 Binaries?

2001-02-16 Thread Madhon
a have been looking for the function definitions u mention and cant find them in any of the source files that i have have u any ideas about this if u want to see the zend_ini.h and zend_ini.c i can email them to u "Daniel Beulshausen" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[

[PHP-WIN] Using curl with php

2001-02-16 Thread Victor Hugo Gonzales
Hi I have been reading de curl tutorial and I try to aplicate it using php but I have problems with php. In this tutorial there's this example (to transfer data with post method): curl -d "birthyear=1905&press=OK" www.hotmail.com/when/junk.cgi Do you know how can I do this using

Re: [PHP-WIN] Apache PHP/Win98 Binaries?

2001-02-16 Thread Daniel Beulshausen
At 14:51 16.02.2001 +, Madhon wrote: >a have been looking for the function definitions u mention and cant find >them in any of >the source files that i have >have u any ideas about this if u want to see the zend_ini.h and zend_ini.c i >can email them to u in the folder zend you'll find the fi

[PHP-WIN] Serialized data gets corrupted in DBM

2001-02-16 Thread samlam
Operating system: Windows 98 PHP version: 4.0.4pl1 Description: Serialized data gets corrupted in DBM I created a set of programs for maintaining userid and password information using the DBM functions. (dbmopen, dbminsert, etc).. I keep userid, password, effective date, expiry dates, etc..

Re: [PHP-WIN] About PDF

2001-02-16 Thread alain samoun
If you can wait, I should be posting a class, that will do what you want. Look for it in a week or two at: phpclasses.upperdesign.com/browse.html Alain Antonio Lopez wrote: > > I´m making a Pdf document with Php. > > Questions: > > · ¿Can i make TABLES with Pdf? > (Something like Html...) >

Re: [PHP-WIN] CGI error: incomplete headers?

2001-02-16 Thread Maurice Barnes
While I dont have a solution for this problem I can confirm that the problem is in the Header("Location:") command. Because of this obvious quirk with IIS and PHP4 we have had to resort to PHP3 for a major e-business site we were trying to upgrade to PHP4. I am not sure why this has not yet be

php-windows Digest 16 Feb 2001 20:38:45 -0000 Issue 449

2001-02-16 Thread php-windows-digest-help
php-windows Digest 16 Feb 2001 20:38:45 - Issue 449 Topics (messages 5589 through 5607): Re: CGI error: incomplete headers? 5589 by: Paco Ortiz 5607 by: Maurice Barnes Re: About PDF 5590 by: Rainer Schaaf 5606 by: alain samoun remote_user 5591 by: P

[PHP-WIN] sending by timestamp

2001-02-16 Thread afan
Hi guys, I work on newsletters and I send them using PHP. I want to send them in couple groups. My question: is there any chance that first group e-mails would be start sending themselves at noon. 2nd group at 1PM etc. - depend on time (timestamp)? Thanks for any help! Afan

Re: [PHP-WIN] CGI error: incomplete headers?

2001-02-16 Thread Toby Butzon
You might want to double check your location commands... Maurice's omits a necessary space between "Location:" and the URL - this space MUST be here... ie header("Location: ") is correct but header("Location:") is not. Chaz's header statement seems to omit the colon... maybe it's a typo

RE: [PHP-WIN] CGI error: incomplete headers?

2001-02-16 Thread Chaz Yoon
The header is actually correct, complete with the colon. I just used ellipses to omit the whole mess of the URL that I was using for that page -- sorry for the confusion. If I swap out the URL with http://www.cnn.com/ or something else and it works beautifully. I spotted an archived note on Usenet

[PHP-WIN] good site for techies - hytes.com

2001-02-16 Thread Vasudeva Varma
good site for techies - hytes.com Vasu _ Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com. -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: [PHP-WIN] CGI error: incomplete headers?

2001-02-16 Thread Maurice Barnes
Hi Toby, Sorry about that.. the format is header("location: http://www.somewhere.com"); This is what gives the error. Have you been doing redirects or just straight POSTS? Maurce - Original Message - From: "Toby Butzon" <[EMAIL PROTECTED]> To: "Maurice Barnes" <[EMAIL PROTECTED]> Cc

Re: [PHP-WIN] good site for techies - hytes.com

2001-02-16 Thread phobo
hehe just don't accidently go to hyte.com :) I love that java popup mouseover stuff ;) Siggy - Original Message - From: "Vasudeva Varma" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, February 16, 2001 9:21 PM Subject: [PHP-WIN] good site for techies - hytes.com > good site

Re: [PHP-WIN] CGI error: incomplete headers?

2001-02-16 Thread Toby Butzon
Hi Maurice - I've been doing both. I use redirects a LOT in some of my applications and have had no problems so far. The exception is that IE 5 sometimes alerts with a "redirection error" but this only occurs if I hit "refresh" - actually posting with the form has yeilded no problems. I'm using

[PHP-WIN] shell scripting.

2001-02-16 Thread kill-9
does anyone know if it is possible to pass code to the php executable. for example. php I have tried but it didn't work maybe I'm just doing it wrong.If it doesn't is there a way of running a script that is in memory. say I use fopen to read a php script into a variable how then can