RE: [PHP] How to access arrays from $GLOBAL?

2002-03-13 Thread Hunter, Ray
Where is some good documentation on how $GLOBALS works and what is really going on in the background? Thank you, Ray Hunter Firmware Engineer ENTERASYS NETWORKS -Original Message- From: Rasmus Lerdorf [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 13, 2002 9:53 AM To: Richard

RE: [PHP] SERVER INFO

2002-03-15 Thread Hunter, Ray
Check out the Linux howto's at http://www.linuxdoc.org/docs.html#howto This will help you set up a server and get online... Thank you, Ray Hunter Firmware Engineer ENTERASYS NETWORKS -Original Message- From: Dani [mailto:[EMAIL PROTECTED]] Sent: Friday, March 15, 2002 11:42

[PHP] Re: where is http_cookie ?

2002-03-16 Thread Ray Hunter
Try using the predefined variable $_COOKIE instead and see if that works for you... "Bas Jobsen" <[EMAIL PROTECTED]> wrote in message 02031617361309.10531@bjobsen">news:02031617361309.10531@bjobsen... > Hello, > > I have installed php 4.1.2. as a cgi module. > But http_cookie isn't set. I don' k

[PHP] Re: PHP Document not found

2002-03-16 Thread Ray Hunter
You should try moving to the current version of php and then try it... Ray Hunter "Jan Weidhaase" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Hi > > If I try to open a non-existing PHP document by my Apache server I got a

RE: [PHP] Two easy HTML/CSS questions

2002-03-18 Thread Hunter, Ray
Answers: 1. Yes you can do it with css. http://www.w3schools.com/css/default.asp 2. The text field area is defined by the browse...You cannot change the size of the actual box that is the text field... Thank you, Ray Hunter Firmware Engineer ENTERASYS NETWORKS -Original Message

RE: [PHP] Two easy HTML/CSS questions

2002-03-18 Thread Hunter, Ray
will be 25 characters...This is for the text and password fields... Thank you, Ray Hunter Firmware Engineer ENTERASYS NETWORKS -Original Message- From: Darren Gamble [mailto:[EMAIL PROTECTED]] Sent: Monday, March 18, 2002 11:32 AM To: 'Hunter, Ray'; 'Phil Schwarzmann';

[PHP] Sockets and Telnet

2002-03-19 Thread Hunter, Ray
Has anyone created a telnet session in php with sockets and can give me some help on setting one up? Thank you, Ray Hunter Firmware Engineer I ENTERASYS NETWORKS Phone: 801.887.9888 Fax:801.972.5789 Email: [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>

RE: [PHP] A Newbie needs help with his first Class

2002-03-22 Thread Hunter, Ray
Don't declare the new object in the file. I would declare the new object in the script that you are running in the browser. Example... root_path . ""; echo $global->relative_path . ""; ?> Thank you, Ray Hunter Firmware Engineer ENTERASYS NETWORKS >

RE: [PHP] A Newbie needs help with his first Class

2002-03-22 Thread Hunter, Ray
The way that Warwick has it set up is fine as long as you create the new in the script that is being called by the browsers so that you can access the class variables...I do not see the need to change the function name unless it conflicts with any predefined variables. Thank you, Ray Hunter

RE: [PHP] Strange problem passing variables

2002-03-22 Thread Hunter, Ray
Try using $_GET['varnamehere'] Ray Hunter -Original Message- From: Jean-Arthur Silve [mailto:[EMAIL PROTECTED]] Sent: Friday, March 22, 2002 8:05 AM To: [EMAIL PROTECTED] Subject: [PHP] Strange problem passing variables Hi, A friend of me use PHP4.1.2 on Linux+Apache H

RE: [PHP] cron with php as apache module

2002-03-22 Thread Hunter, Ray
add this before the /* EOF */ Thank you, Ray Hunter Firmware Engineer ENTERASYS NETWORKS > -Original Message- > From: Paul Roberts [mailto:[EMAIL PROTECTED]] > Sent: Friday, March 22, 2002 12:00 PM > To: [EMAIL PROTECTED] > Subject: [PHP] cron with php as apache module

[PHP] How to write file containing shell script?

2002-03-27 Thread Dalton Hunter
Hi, I am trying to write a file that contains a shell script. The file writes to the server but when I try to execute it it fails with a command not found error. But if I copy and paste the files contents into a new text file using Textpad on my PC and upload it to the same directory it works?! It

Re: [PHP] How to write file containing shell script?

2002-03-27 Thread Dalton Hunter
"Miguel Cruz" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > On Wed, 27 Mar 2002, Dalton Hunter wrote: > > Hi, I am trying to write a file that contains a shell script. The file > > writes to the server but when I try to

Re: [PHP] How to write file containing shell script?

2002-03-27 Thread Dalton Hunter
"Miguel Cruz" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > On Thu, 28 Mar 2002, Miguel Cruz wrote: > > Right. I think the "No such file or directory" message is because it's > > failing to find an interpreter called "/bin/bash\r". > > Sorry, I mean "/bin/sh\r

RE: [PHP] RADIUS - supported in PHP?

2002-03-28 Thread Hunter, Ray
What are you trying to do with radius and php? Thank you, Ray Hunter Firmware Engineer ENTERASYS NETWORKS > -Original Message- > From: Benji Spencer [mailto:[EMAIL PROTECTED]] > Sent: Thursday, March 28, 2002 6:35 AM > To: [EMAIL PROTECTED] > Subject: [PHP] RADIUS

RE: [PHP] RADIUS - supported in PHP?

2002-03-28 Thread Hunter, Ray
mibs on network devices. This gives me authentication and accounting information. I suggest you read up on these rfcs: 2618, 2619, 2620, 2621, 2865, 2866, 2867, 2869, and 3162. You could also try writing a radius extension for php? Thank you, Ray Hunter Firmware Engineer ENT

[PHP] Can I search for a partial match in an array ?

2002-03-28 Thread Dalton Hunter
Hi, I want to search for a partial match in an array? Does in_array() or search_array() support this or is there another way? For example if I have 30 file names in an array in the format ... file1.txt file2.txt pic1.gif pic2.gif ... how can I check to see if any values in the array start with t

Re: [PHP] Can I search for a partial match in an array ?

2002-03-28 Thread Dalton Hunter
Thanks, worked great! "Bvr" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > > preg_grep("/^file/", $arr) > > bvr. > > Dalton Hunter wrote: > > >Hi, I want to search for a partial match in an ar

RE: [PHP] Program Looping ?

2002-03-29 Thread Hunter, Ray
You need to also make sure that you change the script execution time allowed in the php.ini file to 5 minutes or more or else you will get a time out error. Thank you, Ray Hunter Firmware Engineer ENTERASYS NETWORKS > -Original Message- > From: Jason Caldwell [mailto:

RE: [PHP] RE: PHP/MySQL/XML

2002-04-01 Thread Hunter, Ray
One thing you need to thing about is if you are going to us DTDs. If you are and they specify that you need the elements then it is best to add a space when nothing is contained in $ext... Thank you, Ray Hunter Firmware Engineer ENTERASYS NETWORKS > -Original Message- >

[PHP] What PHP commands could do this?

2002-04-01 Thread Dalton Hunter
Hi, I would like to include a version checker/update utility with a php program I am writting. Can someone tell me what php commands would be needed to write a script that would compare the versions or dates of a customers php files against those from a remote server and provide a way for the cust

RE: [PHP] PHP FAQ (again)

2002-04-03 Thread Hunter, Ray
ble help. Just some extra thoughts here... I now some mailing lists will not even reply if you do not follow specific criteria when you post... Thank you, Ray Hunter Firmware Engineer ENTERASYS NETWORKS > -Original Message- > From: Justin French [mailto:[EMAIL PROTECTED]] >

RE: [PHP] PHP FAQ (again)

2002-04-03 Thread Hunter, Ray
u ask if they have researched some of the information and the reply is no...Then I say "RTFM and STFI"... This is a general list and newbie questions should be asked here...However, newbies need to post adequate information for an adequate response... Thank you, Ray Hunter Firmware Engi

[PHP] Can I fopen() files in .htaccess protected directories?

2002-04-06 Thread Dalton Hunter
Hi, does fopen() support the opening and reading of remote files in directories protected with .htaccess files like ... fopen("http://user:[EMAIL PROTECTED]/directory/file.php","r";); If not, is there an alternative way to do this? Thanks! -- PHP General Mailing List (http://www.php.net/) To

Re: [PHP] Can I fopen() files in .htaccess protected directories?

2002-04-08 Thread Dalton Hunter
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > On Sat, 6 Apr 2002, Dalton Hunter wrote: > > Hi, does fopen() support the opening and reading of remote files in > > directories protected with .htaccess files like ... > > > > fopen("http://user:[EMAIL PROTECTED

[PHP] How do I use fopen() to overwrite a remote file via ftp?

2002-04-08 Thread Dalton Hunter
Hi, I want to use fopen to connect to a remote server via ftp and overwrite a file like ... fopen("ftp://username:[EMAIL PROTECTED]/system/path/to/file.php";, "w") ... but after connecting I get the "Warning: File already exists" error message and it fails. What is the proper way to overwrite it

[PHP] Re: How do I use fopen() to overwrite a remote file via ftp?

2002-04-08 Thread Dalton Hunter
P functions and use those. "Cc Zona" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > In article <[EMAIL PROTECTED]>, > [EMAIL PROTECTED] (Dalton Hunter) wrote: > > > Hi, I want to use fopen to connect to a remote server

RE: [PHP] sablotron XMl XSLT

2002-04-09 Thread Hunter, Ray
http://rpmfind.net/linux/rpm2html/search.php?query=js <http://rpmfind.net/linux/rpm2html/search.php?query=js> I am actually installing it now as we speak... RAY HUNTER Firmware Engineer ENTERASYS NETWORKS -Original Message- From: Matthew Luchak [mailto:[EMAIL PROTECTED]] S

RE: [PHP] php and wml

2002-04-09 Thread Hunter, Ray
You can you just need to have php handle the wml pages and supply the correct headers... RAY HUNTER Firmware Engineer ENTERASYS NETWORKS -Original Message- From: Starman [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 09, 2002 2:00 PM To: [EMAIL PROTECTED] Subject: [PHP] php and

[PHP] file/array manipulation

2005-03-14 Thread Mignon Hunter
Hello I'm trying to manipulate a text(.csv) file using php. I've read the file and can print each line, but I need to write where column A is missing ColumnAColumnB RABC company ABC company ABC company ABC company O

[PHP] file/array manipulation

2005-03-14 Thread Mignon Hunter
Hello I'm trying to manipulate a text(.csv) file using php. I've read the file and can print each line, but I need to write where column A is missing ColumnAColumnB RABC company ABC company ABC company ABC company O

[PHP] file/array manipulation

2005-03-14 Thread Mignon Hunter
Hello I'm trying to manipulate a text(.csv) file using php. I've read the file and can print each line, but I need to write where column A is missing ColumnAColumnB RABC company ABC company ABC company ABC company O

Re: [PHP] file/array manipulation[RESOLVED]

2005-03-16 Thread Mignon Hunter
Got it - never mind instead of $new_array = array($line_split[0] => $line_split[1] ); it's $new_array = array($line_split[0] , $line_split[1] ); But I'm still not sure how it works so well... Ok I got this to work but I'm not sure how -- and am having trouble re-p

Re: [PHP] file/array manipulation

2005-03-16 Thread Mignon Hunter
Ok I got this to work but I'm not sure how -- and am having trouble re-producing the data: My script I have so far is: $lines = file('test2.csv'); foreach ($lines as $line) { $line_split = explode(",", $line); if(!(empty($line_split[0]) ) ){ //echo "I'm not empty"

RE: [PHP] Session in URL [RESOLVED}

2005-03-17 Thread Mignon Hunter
I had my admin change the session.use_trans_sid = 1 to =0 no more sess ID in the URL - woo hoo I guess this has to be 0 or in later versions 4.3.0 session.use_only_cookies = 1 * Hello I have tested this app on my machine but it doesnt do this - but

[PHP] session woes

2005-03-23 Thread Mignon Hunter
I had my script working beautifully on my box but when transferring to dev server no such luck Because we have an older version of php on the webservers, I had to get my admin to change the php.ini on the session.use_trans_id = 1 so that the SID wouldnt show in the URL. But I'm not sure if that

Re: [PHP] session woes[RESOLVED]

2005-03-23 Thread Mignon Hunter
your php.ini file on the dev server. http://www.thelonecoder.com [EMAIL PROTECTED] 562.924.4454 (office) 562.924.4075 (fax) continuing the struggle against bad code */ ?> > From: "Mignon Hunter" <[EMAIL PROTECTED]> > Date: Wed, 23 Mar 2005 11:20:24 -0600 > To: &g

Re: [PHP] php t1lib windows

2004-04-21 Thread Ray Hunter
On Wed, 2004-04-21 at 14:50, Nikola Novakovic wrote: > Hi everybody, > > I run Appache/PHP (latest or near the latest versions) on Windows 2000. > > This was installed by pre-configured package WAMP5 (I'm the beginner), and it works > fine, except I don't know how to obtain support for T1LIB li

Re: [PHP] ADS authentication

2004-05-13 Thread Ray Hunter
On Thu, 2004-05-13 at 08:36, Kuldeep Singh Tomar wrote: > Finally I am able to authenticate my user to ADS using php. Thanks for > your suggestions. My bind_dn was not correct. After that I have > searched and found that using anonymous user we can not search in > subtree of directory server. S

Re: [PHP] ADS authentication

2004-05-11 Thread Ray Hunter
On Tue, 2004-05-11 at 09:16, Kuldeep Singh Tomar wrote: > Hi, > > Sorry for it. Can I get some help on this? Here is what i used to query Exchange...now i am no windowz guru, but from what i understand about exchange and ads exchange will send user information to ads to be authenticated. So my wo

Re: [PHP] ADS authentication

2004-05-11 Thread Ray Hunter
On Tue, 2004-05-11 at 10:14, Kuldeep Singh Tomar wrote: > Hi Ray, > > Thanks for your response. I was trying this script also but no success. > > I was using following values: > > $ldap[ʽuserʼ] = ʽtomarʼ; > $ldap[ʽpassʼ] = ʽpasswdʼ; > $ldap[ʽhostʼ] = ʽdc02-del3.vc-del.vcustomer.comʼ; > $ldap[ʽpo

Re: [PHP] Gd library not found

2004-05-08 Thread Ray Hunter
On Sat, 2004-05-08 at 10:46, Phpu wrote: > Where can i get the gd library for windows. I've googled but i can't find it. It should be bundled with the zip file version of windows php. You will probably have to download the zip file from php.net and then get the dll for gd out of the zip file and p

Re: [PHP] Re: PHP & Apache Version

2004-05-04 Thread Ray Hunter
> Is there a version of Apache 2+ that now works with PHP? Last I checked, > the were incompatible, but recently someone I ran into claimed that the bugs > have been for such a setup. There is the warning not to use apache 2.0 and php in production. I am sure that there are many that are using i

Re: [PHP] WHERE clause...getting closer

2004-05-04 Thread Ray Hunter
On Tue, 2004-05-04 at 19:18, msa wrote: > $query_rsENews = 'SELECT * FROM NewsArchive WHERE YEAR(datePublished) = ' . > YEAR('NOW'()) . ' AND MONTH(datePublished) = ' . MONTH('NOW'()) . ' ORDER BY > sortBy DESC'; > > > this is supposed to return only the records that have the current month and >

Re: [PHP] xslt_process

2004-05-15 Thread Ray Hunter
On Sat, 2004-05-15 at 10:20, eoghan wrote: > hi, > im using the xslt_process() function, but want to use a php file with > generated xml content as the xml file i feed the > function but it seems to complain that its a php file > *Warning*: Sablotron error on line 22: XML parser error 4: not

Re: [PHP] Carrying Variables

2004-05-15 Thread Ray Hunter
On Sat, 2004-05-15 at 02:53, Ronald "The Newbie" Allen wrote: > How would I carry a variable from one page to another > > Here is what I mean > > I have a send.php page and this is sent to > insert_into_database.php where the values of the previous page are inserted > into the database. > I then

Re: [PHP] xml -> xslt -> xsl:fo -> pdf

2004-05-24 Thread Ray Hunter
On Mon, 2004-05-24 at 10:53, juan vazquez wrote: > Hi, > I am trying to transform a xsl:fo file to pdf. > I generate xml files from mysql and I can convert them to xsl:fo using xslt > but I can't find information for the last step (XSL:FO to PDF) > I just know that a formatter is needed but all wha

Re: [PHP] Error building PHP with PostgreSQL support

2004-05-25 Thread Ray Hunter
On Mon, 2004-05-24 at 17:14, Robert Fitzpatrick wrote: > I am getting the following problem with trying to install from source > PHP 4.3.6 with PG support on FreeBSD 5.2.1. I have PostgreSQL 7.4.2 > recently upgraded from 7.3.x and it is up and running fine. I also have > Heimdal 0.6 installed and

Re: [PHP] Reading from XML file

2004-05-25 Thread Ray Hunter
On Tue, 2004-05-25 at 05:03, Ago wrote: > I have a PHP script who reads data from a XML file uploaded via http form. > This file is about 15 MB. The script builds a query of thousands inserts as > many as the products the XML file contains (more or less 4 inserts). > After 4 minutes the httpd p

Re: [PHP] Simplistic PHP tutorial

2004-05-25 Thread Ray Hunter
On Tue, 2004-05-25 at 09:17, Stephen Allen wrote: > On Tue, May 25, 2004 at 10:47:01AM -0400 or thereabouts, Neal wrote: > > Hi, > > > > I've looked at the php.net tutorial, and though I'm learning some things > > from it, it's still a bit over my head. It seems to presuppose a comfort > > level

Re: [PHP] xslt_create

2004-06-30 Thread Ray Hunter
On Wed, 2004-06-30 at 14:30, Pierre wrote: > Hi all > Please when i'm trying to use the xslt_create() function php says indefined > function but this is in my phpinfo() > XML Support active > XML Namespace Support active > EXPAT Version 1.95.6 > Any idea please ? You need xslt support en

RE: [PHP] xslt_create

2004-06-30 Thread Ray Hunter
On Wed, 2004-06-30 at 14:36, Pierre wrote: > Ok so I must recompile php with this option but I can't is there any php > class easy to use that can do this ? If you are on a linux box and have php installed via rpm you might be able to get a php-xslt rpm that you can use. If on windows you can down

Re: [PHP] PHPEclipse?

2004-07-12 Thread Ray Hunter
On Mon, 2004-07-12 at 12:39, Dan Joseph wrote: > I was wondering, is anyone running Eclipse 3.0 w/PHPEclipse 1.1.0? > I'm having trouble getting it working. I downloaded the July .ZIP file and > unzipped it into the plugins directory. Its not recognizing it. Anyone > have this working? I

Re: [PHP] Classes and OOP

2006-03-07 Thread Kim Hunter
PHP5 Objects, Patterns and Practice 1590593804 - Matt Zandstra - Apress This is a good way to get a good grasp of object-oriented programming covers the basics of uml as well as using decent examples to explain the use of objective programming (unlike all the web sites out there that i tried to

Re: [PHP] Document generation from XML

2004-02-03 Thread Ray Hunter
On Tue, 2004-02-03 at 13:50, Russell Seymour wrote: > In the beginning only one output format was required, HTML and then PDF was > a requirement. More and more formats are now required by my users and > rather than create a new output script for each different format I am > thinking about outputt

Re: [PHP] CVS style project system

2004-02-05 Thread Ray Hunter
On Thu, 2004-02-05 at 18:21, [EMAIL PROTECTED] wrote: > Hi there, i have been asked to build a system for a project file space, > where a list of users of different groups can start new projects for their > group, add files for that project of the group and/or revise current files > with different

Re: [PHP] Novell and PHP

2004-02-05 Thread Ray Hunter
On Thu, 2004-02-05 at 20:09, [EMAIL PROTECTED] wrote: > Can someone explain what this all means then > > http://forge.novell.com/modules/xfmod/project/?php > > Are they supporting php or are they planning to take over something that is > impossible ? > > We have novell systems at work, if this m

Re: [PHP] Novell and PHP

2004-02-05 Thread Ray Hunter
On Thu, 2004-02-05 at 20:25, [EMAIL PROTECTED] wrote: > > > > This is a project that allows for PHP integration on Novell NetWare > > systems. > > I dont particularly know what exact netware systems we have but would this > mean i could create sessions in my projects that will sync up the windows

Re: [PHP] Novell and PHP

2004-02-05 Thread Ray Hunter
On Thu, 2004-02-05 at 20:42, [EMAIL PROTECTED] wrote: > > > > Not sure about that, i have only got the windows to login by using php > > ldap functions and active directory. > > Yeh thats what i meant how is this possible ? http://builder.com.com/5100-6387-5032010.html?tag=search That should get

Re: [PHP] boolean search class

2004-02-05 Thread Ray Hunter
On Thu, 2004-02-05 at 20:46, David T-G wrote: > Hi, all -- > > I'm implementing a search and would like to move beyond accepting > > this that other > > for simple any-word searching to a real boolean search. Has anyone seen > any good classes or even functions for such? [No, the source cont

Re: [PHP] Japanese Language

2004-02-05 Thread Ray Hunter
On Thu, 2004-02-05 at 19:39, KidLat Ngayon wrote: > my problem is the language from my database, they > inputted some english and japanese language > > whenever i've open the file in staroffice, it can read > the nihongo, however when i open it in microsoft > office, it turns out that the niho

Re: [PHP] recursive direcotry listing

2004-02-05 Thread Ray Hunter
On Wed, 2004-02-04 at 22:36, Binay wrote: > is there function which scans a particual directory recurisly and stores the content > in array or other way? Listing of files should be in alphabetical way and > directories should come on top. > Currently there is not a function that will go down re

Re: [PHP] boolean search class

2004-02-05 Thread Ray Hunter
On Thu, 2004-02-05 at 21:09, [EMAIL PROTECTED] wrote: > > > > I have used lucene (Jakarta-Apache) for doing searchs that is > > outstanding. > > > What does it use ? Lucene is actually a Jakarta-Apache (java) project. I have used it to implement site searches, search keyword highlighting for var

Re: [PHP] boolean search class

2004-02-05 Thread Ray Hunter
On Thu, 2004-02-05 at 21:26, [EMAIL PROTECTED] wrote: > > On Thu, 2004-02-05 at 21:09, [EMAIL PROTECTED] wrote: > >> > > >> > I have used lucene (Jakarta-Apache) for doing searchs that is > >> > outstanding. > >> > > >> What does it use ? > > > > > > Lucene is actually a Jakarta-Apache (java) proje

Re: [PHP] boolean search class

2004-02-06 Thread Ray Hunter
On Fri, 2004-02-06 at 06:47, David T-G wrote: > Very, very simple stuff. The list of directories and files is held in an > array (a separate process uses File_Find->maptree() to make it after any > updates and writes the serialized array to a cache file, and then I read > it in) and I just want to

Re: [PHP] Testing Pear install

2004-03-03 Thread Ray Hunter
On Wed, 2004-03-03 at 12:21, DAvid Jackson wrote: > How can I test to see if and what portions of Pear are installed on a > vhosted website? If you have access to the command line pear you can also check with a simple command: $ pear list -- PHP General Mailing List (http://www.php.net/) To un

Re: [PHP] XML architecture question

2004-03-14 Thread Ray Hunter
On Sun, 2004-03-14 at 13:17, Jabro wrote: > Hi List, > hope somebody here can help me out here. For a new page I'm designing I see > one problem coming up. > As I need to generate varius outputs such as HTML or PDF I think going over > XML isn't a bad idea. > I create one XSL for my output and chan

Re: [PHP] installing with XSLT

2004-03-18 Thread Ray Hunter
On Thu, 2004-03-18 at 03:24, Merlin wrote: > I am trying to install php with XSLT support. Somehow it does not work > out. I installed all packages which are explained on the install page of > XSLT. But there seems to be a backend thing missing: > > This is from the ./configure command: > > che

Re: [PHP] Interbase with PHP in Mandrake 9.1 help !

2004-03-18 Thread Ray Hunter
On Thu, 2004-03-18 at 04:51, Luiz Gustavo Sarubi Macchi wrote: > Please > > I´m using Mandrake 9.1 and I need to use PHP with interbase ! > > So, I've been instaled the php430-devel and i built the extension of > interbase like this: > phpize > after that ./configure --with-interbase=/opt/interb

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; $i<551; $i++) > { >print $a[$i]; >print ""; > } > ?> 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 ip

Re: [PHP] Ncurses

2004-04-02 Thread Ray Hunter
On Fri, 2004-04-02 at 01:46, Brent Clark wrote: > I was browsing the list of functions for PHP and I saw a whole range of > ncurses functions. > I was wondering if anyone knows of a site that has any demos or examples and or > where it can be used Used on *nix flavors and you need to compile ncu

Re: [PHP] PHP + XSL-FO

2004-04-02 Thread Ray Hunter
On Fri, 2004-04-02 at 06:57, Juan Torres wrote: > can PHP parser a XML file with a XSL-FO file to generate a PDF file? sure if you set it up properly! /ray -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: snmp_set_quick_print or snmpwalkoid issue ?

2002-05-02 Thread Ray \"BigDog\&quot; Hunter
Basically you are not going to get the value type of the snmp, ie OID, timeticks, integers, etc.. Ray Hunter "Razvan Cosma" <[EMAIL PROTECTED]> wrote in message Pine.LNX.4.44.0205011203110.32753-10@mach2">news:Pine.LNX.4.44.0205011203110.32753-10@mach2... >

[PHP] CURL Users

2002-05-02 Thread Ray \"BigDog\&quot; Hunter
Has anyone every used curl to do something similar to wget on linux? BigDog -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

<    1   2   3   4