Re: [PHP] mysql - can't use the copy/paste function

2004-03-30 Thread Richard Davey
Hello, Wednesday, March 31, 2004, 1:43:17 AM, you wrote: F When using the dos window command line for mysql commands F everything works fine except if I try to use the paste function to F paste pre-typed commands, the window freezes. This is F aaannnoooyyyiiinnnggg. Get yourself a copy of MySQL

[PHP] Re: .doc file

2004-03-30 Thread Anthony Ritter
Jason Barnett [EMAIL PROTECTED] wrote in message: Actually, why don't you just use plain text like this. Sheesh, sometimes I forget the easy answer :) .. Jason, Thanks for the reply. Since those figures change _daily_ on their site, I was hoping for a way to open the file, read

[PHP] Re: .doc file

2004-03-30 Thread Jason Barnett
Since those figures change _daily_ on their site, I was hoping for a way to open the file, read it, adjust the format by lopping off the last line into an array and writing those values into a table - _without manually copying and pasting the data each day into a .txt file_. Whoops, it's getting

[PHP] Bison and Flex required to install PHP?

2004-03-30 Thread Terence
checking lex output file root... ./configure: line 2425: lex: command not found configure: error: cannot find output from lex; giving up and from a search on Yahoo!:

Re: [PHP] Re: Really Annoying Require/Include Error

2004-03-30 Thread Curt Zirzow
* Thus wrote Mike R ([EMAIL PROTECTED]): -Original Message- I am getting this error: Fatal error: Failed opening required '/home/sites/site111/web/news/settings/newsletter.settings.inc.php' (include_path='') in

[PHP] Interesting phpversion() thing.

2004-03-30 Thread Axel IS Main
I just upgraded to 4.3.5. I double checked and made sure I put everything in the right place. If I run php or php-cli from the command line and the script has phpversion() in it, it returns the correct string, i.e. 4.3.5. If, however, I pull the same script up in a browser it gives me 4.3.4.

Re: [PHP] File Download link not working in PHP 4.3.4

2004-03-30 Thread Curt Zirzow
* Thus wrote Andrew Hauger ([EMAIL PROTECTED]): the file name. When the OK button is clicked, an error dialog pops up with the message Internet Explorer cannot download ... [snipped URL]. Internet Explorer was not able to open this Internet site. The requested site is either unavailable or

Re: [PHP] Interesting phpversion() thing.

2004-03-30 Thread Curt Zirzow
* Thus wrote Axel IS Main ([EMAIL PROTECTED]): I just upgraded to 4.3.5. I double checked and made sure I put everything in the right place. If I run php or php-cli from the command line and the script has phpversion() in it, it returns the correct string, i.e. 4.3.5. If, however, I pull

[PHP] PEAR::SOAP

2004-03-30 Thread Robby Russell
I am trying to debug some xml issues with a SOAP/Client-based script. $sc = new SOAP_Client(...); is there a way to display the XML it attempts to send the server when I perform a $sc-call(...) *back to his google searches* -- Robby Russell, | Sr. Administrator / Lead Programmer Command

Re: [PHP] running php in sequence

2004-03-30 Thread Robby Russell
Edward Peloke typed this on 03/31/2004 08:11 AM: I am using php in combination with ant to create a small automated build process. Will php run sequentially? What I mean is I have a series of modules or tasks: Example: //check out files include(modules/checkout.php) //zip up the files include

[PHP] SNMP PLEASE HELPP!!!!!!!!!!

2004-03-30 Thread Victor
? $a = snmpwalk(216.18.74.170, public, ); for($i=0; $i551; $i++) { print $a[$i]; print br; } ? This is my code and i recieve a huge list. Some of it i understand but i can't understand the OID part and all the ips there. Can you please help me Thanks -- PHP General Mailing List

Re: [PHP] Bison and Flex required to install PHP?

2004-03-30 Thread Evan Nemerson
On Tuesday 30 March 2004 06:08 pm, Terence wrote: checking lex output file root... ./configure: line 2425: lex: command not found configure: error: cannot find output from lex; giving up and from a search on Yahoo!: http://www.madpenguin.org/modules.php?op=modloadname=NS-Commentsfile=inde

Re: [PHP] .doc file

2004-03-30 Thread David T-G
Tony, et al -- ...and then Anthony Ritter said... % % Greets, % I've been able to open a remote URL, read it and then lop off everything % except the last line and break it into an array with its' tabs - /t . Good enough. % % The data will then be inserted into a table. % % However, the

Re: [PHP] SNMP PLEASE HELPP!!!!!!!!!!

2004-03-30 Thread Ray Hunter
On Tue, 2004-03-30 at 13:17, Victor wrote: ? $a = snmpwalk(216.18.74.170, public, ); for($i=0; $i551; $i++) { print $a[$i]; print br; } ? This is my code and i recieve a huge list. Some of it i understand but i can't understand the OID part and all the ips there. Can

Re: [PHP] PHP Seg Faults, How to Trackdown?

2004-03-30 Thread Tim Schaab
Howdy, I tried the suggestion, though I had to load up some extra files to get it to work. I had to do a LD_PRELOAD=/lib/i686/libc.so.6 /lib/i686/libm.so.6 /lib/i686/libpthread.so.0 /lib/i686/libpthread.so.0 had to be in since /lib/tls/libpthread.so.0 would not load when

[PHP] ASP.NET web control in PHP?

2004-03-30 Thread Bill
Dear All, I've a few months of experience in PHP programming. I'd like to know whether PHP has anything similar to the web control in ASP.NET? I found that ASP.NET is really handy when creating GUI for web applications. The web controls are quite easy to use and I like the DataGrid in

[PHP] Re: [PHP-WIN] ASP.NET web control in PHP?

2004-03-30 Thread Ignatius Reilly
Check the PEAR library, especially: - Quickform - Quickform Controller - Datagrid and many other nice things _ - Original Message - From: Bill [EMAIL PROTECTED] To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Tuesday, March 30, 2004 7:04 PM Subject: [PHP-WIN]

[PHP] Re: Having trouble formatting width using printf() and default spaces

2004-03-30 Thread David Scott
I tried your method and it's a nice variation, though it leaves me with two issues: 1. I'd like the numbers to be right-aligned. 2. I'd still like to understand why the default padding of spaces isn't working for printf(). If I could get printf() to pad with spaces, it would be exactly what

[PHP] Re: Having trouble formatting width using printf() and default spaces

2004-03-30 Thread David Robley
[EMAIL PROTECTED] (David Scott) wrote in news:[EMAIL PROTECTED]: I tried your method and it's a nice variation, though it leaves me with two issues: 1. I'd like the numbers to be right-aligned. 2. I'd still like to understand why the default padding of spaces isn't working for printf().

RE: [PHP] Having trouble formatting width using printf() and defa ult spaces

2004-03-30 Thread Martin Towell
spaces in HTML are collapsed to a single space, that why you only see the numbers seperated by a single space. doesn't look like you can use printf() directly to use nbsp; as the space character, however, you can use sprintf() and str_replace() together to do the same effect. Try this: echo

Re: [PHP] Bison and Flex required to install PHP?

2004-03-30 Thread Terence
nope, just untarred and ran ./configure. not to worry, installed flex and bison and it's okay. the GD version reporting still puzzling me, and from what i've seen on a few messageboards, i'm not alone :) thanks - Original Message - From: Evan Nemerson [EMAIL PROTECTED] To: Terence

<    1   2