[PHP] Making with $values!!!

2002-12-30 Thread Alexander Guevara
hi.. i have this and i cant get it work!!.. HERES THE CODE --- for ($i=1;$i<11;$i++){ echo" TEXT "; }

[PHP] Eocene -- An OO Framework for Web Devlopment

2002-12-30 Thread Eocene
Eocene is an OO (Object Oriented) Web development framework that incorporates many proven software development practices to provide a foundation for building Web applications. It uses PHP for foundation classes and xml-based text files for application configurations. It is a simple and easy to use

Re: [PHP] Making with $values!!!

2002-12-30 Thread Maciek Ruckgaber Bielecki
i dont finally understand mate what do need, load the values already filled, when the form is not sent because of an error? you can try something like this for($i=0;$1<5;$i++) { } if that is what you need, if no, you can write to me in spanish, and explain better in spanish ;) regards

[PHP] printing documents on printer

2002-12-30 Thread Larry Brown
Does anyone know where I might find specific information on methods of sending documents to a printer from the web server to an attached printer. My PHP and Perl books don't even touch on the capability for some reason. Larry S. Brown Dimension Networks, Inc. (727) 723-8388 -- PHP General Mai

RE: [PHP] printing documents on printer

2002-12-30 Thread John W. Holmes
> Does anyone know where I might find specific information on methods of > sending documents to a printer from the web server to an attached printer. > My PHP and Perl books don't even touch on the capability for some reason. On windows you can use the Printer Functions... http://www.php.net/manu

RE: [PHP] printing documents on printer

2002-12-30 Thread Larry Brown
My apologies, this is Linux RH8 to be exact. Larry S. Brown Dimension Networks, Inc. (727) 723-8388 -Original Message- From: John W. Holmes [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 31, 2002 12:05 AM To: 'Larry Brown'; 'PHP List' Subject: RE: [PHP] printing documents on printer

Re: [PHP] printing documents on printer

2002-12-30 Thread Michael J. Pawlowsky
Build a file on the disk and use a shell to send it with lpr. *** REPLY SEPARATOR *** On 30/12/2002 at 11:59 PM Larry Brown wrote: >Does anyone know where I might find specific information on methods of >sending documents to a printer from the web server to an attached printe

[PHP] PLEASE HELP

2002-12-30 Thread Dale
I was able to successfully install the php on my win2k server. I am, however, getting an error any time I try to initialize a variable. This is the error I am getting: Notice: Undefined index: adv_auth in ...\mysql\lib.inc.php on line 132 I am not sure as to whether I forgot to do something when

[PHP] FORM text formatting problem

2002-12-30 Thread Pag
Hi, When i retrieve the text i have on my database, which was taken from a form textbox, i have line breaks ate the end of each line in the textbox. Ah, hard to explain! My textbox is small, and everytime, while writing a text in it, the line ends and we continued writing on the next one, t

RE: [PHP] FORM text formatting problem

2002-12-30 Thread John W. Holmes
> When i retrieve the text i have on my database, which was taken from > a > form textbox, i have line breaks ate the end of each line in the textbox. > Ah, hard to explain! > My textbox is small, and everytime, while writing a text in it, the > line > ends and we continued writing on t

RE: [PHP] FORM text formatting problem

2002-12-30 Thread Pag
Are you using a WRAP attribute on your TEXTAREA? You'll want to set it to OFF or NONE, probably. I can't remember the exact values, it can take, but I think it's PHYSICAL, VIRTUAL, and NONE/OFF. Thank you. Problem solved. Better put "thank you" on some sort of macro because it

[PHP] Getting short (DOS) name of file?

2002-12-30 Thread Leif K-Brooks
I'm trying to run some (often user-defined) files on my windows server. Thing is, it seems to want short names (like C:\PROGRA~1\WHATEVER\PROG.EXE). Is there any way to get the short name from a long name? -- The above message is encrypted with double rot13 encoding. Any unauthorized attempt

[PHP] chunking a blob field. adding a large object chunk by chunk

2002-12-30 Thread Mike Brancato
if I wanted to read a very large object into a blob field, is there a way i could do it in 1MB chunks. using and UPDATE statement "field = field+'$data'". and just use fread to read 1MB at a time into $data. -- Mike Brancato -- PHP General Mailing List (http://www.php.net/) To unsubscribe, vis

[PHP] Function misfunction - 2

2002-12-30 Thread Martin S
NOW what am I doing wrong?? function setCurrentDevGroup($devID) { $query = "SELECT dev_group FROM tracking WHERE (computer = $devID)"; $sth = $adb->prepare($query); if($sth) { $res = $sth->execute();

Re: [PHP] PHP 4.3 JPG Support. Whats needed?

2002-12-30 Thread Jason Wong
On Tuesday 31 December 2002 03:52, Andras Kende wrote: > Hello, > > I'm trying to upgrade to php4.3 on a cobalt raq4 > I have 4.1.2 with gd 1.6, but would like to use gd 2.0 > > Compiled 4.3 from source, everything seems to be fine > except the JPG Support. > > http://www.kende.com/phpinfo.php > >

[PHP] RE: PHP3 + session handling limitation

2002-12-30 Thread electroteque
hi i've just started a job and they are sadly using php3 , what is the work around for the session handling limitation ? i have an authentication class which will not work now beause it cant handles sessions :| -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://ww

[PHP] Shopping Cart Credit Card Verification

2002-12-30 Thread Josiah Peters
I sure hope this is the correct mailing list. I have been struggling with this problem for quite some time. Does anyone know a way to verify credit card information in real time with your bank over the internet in say a shopping cart? Joey Peters

Re: [PHP] Shopping Cart Credit Card Verification

2002-12-30 Thread Maciek Ruckgaber Bielecki
see at http://verisign.com two services are available: payflo link & payflow pro regards, -- "Few are those who see with their own eyes and feel with their own hearts." Albert Einstein --

Re: [PHP] Getting short (DOS) name of file?

2002-12-30 Thread Leif K-Brooks
Thanks... thing is, it can be anything from c:\whatever.exe to c:\program files\program name\bin\program.exe. I'll write a function that goes to each directory in a string and does a dir /x if I have to, but isn't there a simpler way? Michael Sims wrote: On Tue, 31 Dec 2002 01:12:47 -0500, you

<    1   2