Re: [PHP] Poor results with GD

2002-04-15 Thread Andrew Brampton
They looked ok to me, but I don't know what the orginals looked like. But the problem might be that your JPeg quality is set lower than you would like. You can increase it be setting a parameter in ImageJPEG() or most likly whatever function you are using Andrew - Original Me

Re: [PHP] web spider?

2002-04-15 Thread Andrew Brampton
You most certainly can use PHP to do this. And if i'm not wrong I think there are allready scripts which do this (which wouldn't be too hard to hack up for yourself) Check out hotscripts.com Andrew - Original Message - From: "Ryan Govostes" <[EMAIL PROTECTED]>

Re: [PHP] Download the whole directory

2001-10-21 Thread Andrew Brampton
hings that are read by programs like Getright... Just my comments Andrew - Original Message - From: "Mark Lo" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, October 21, 2001 6:16 PM Subject: [PHP] Download the whole directory > Hi, > > I

RE: [PHP] php hosting

2001-10-22 Thread Andrew Chase
They've been mentioned on the list before, but I had a great experience with Cedant.com. Apache, PHP4, MySQL, and shell access via SSH (and the ability to compile your own software in a /home/youraccount/bin directory). I hosted a site with them for a few months earlier this year before taking t

[PHP] RE: Forms and Netscape -- spacing problem -- Help!

2001-10-22 Thread Andrew Chase
It's almost certainly not W3C compliant, but if your form is inside a table (I know, I know - you're not supposed to use tables for layout) you can hide the tags outside the tags of the cell containing the form: E.G.:

Re: [PHP] Error POP3 Class

2001-10-23 Thread Andrew Brampton
see) So we will have to wait for sockets to work on Windows, or move to Linux Andrew - Original Message - From: "Aku" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, October 23, 2001 5:25 AM Subject: [PHP] Error POP3 Class > Hello, > > I try pop

[PHP] Sending / Receiving Cookies with Fopen??

2001-10-24 Thread Andrew Reberry
fic message headders that would mimic having cookies present? Or can I encode the cookies into the URL in some way? Or better yet, is there a way to allow PHP to accept cookies and send these back to the server every time I request a page? Thanks for any help. I have no idea were to turn next! An

RE: [PHP] how can I do this !!

2001-10-25 Thread Andrew Braund
show_source(basename($PHP_SELF)); > At 02:26 PM 10/25/2001, Alawi wrote: > >i have txt file have this words > > > >-- > >bla bla bla > > > >[phpcode] > > >echo 'hello word'; > >?> > >[/phpcode] > > > >bla bla bla > >--- > > > >now I want to convert the code that are between [phpco

RE: [PHP] php/Oracle db connection

2001-10-25 Thread Andrew Hill
Toni, Note the "Unknown host". Check your odbc.ini for the Host field of the DSN you are using. Ensure it's resolvable. Try an IP address instead maybe. Also, set the variables in the environment and see if your DSN works in odbctest without PHP in the mix. Best regards, Andre

RE: [PHP] Microsoft Access

2001-10-26 Thread Andrew Hill
u need any assistance. Best regards, Andrew Hill Director of Technology Evangelism OpenLink Software http://www.openlinksw.com Universal Data Access & Data Integration Technology Providers > -Original Message- > From: Alex Shi [mailto:[EMAIL PROTECTED]] > Sent: Thursday, Octobe

[PHP] Problem handling the %00 Character

2001-10-26 Thread Andrew Cowles
Hi Guys (and Gals), I'm having a little difficulty at the moment. I have a script where users can input HEX encoded data via a form. This data is being received by my script but is terminated at the first occurance of %00. For example; %01%24%84%00%01%02 becomes; %01%24%84 Does anybody know

RE: [PHP] php/Oracle db connection

2001-10-26 Thread Andrew Hill
you need to set: ODBCINI (pointing to the odbc.ini) ODBCINSTINI (pointitng to the odbcinst.ini) LD_LIBARARY_PATH (pointing to the lib directory that contains the libiodbc.so file) DSNs need to be configured in the odbc.ini Best regards, Andrew Hill Director of Technology Evangelism OpenLink

[PHP] Random

2001-10-26 Thread Andrew Duck
#Create Random number $floor = 10; $ceiling = 99; srand((double)microtime()*100); $random = rand($floor, $ceiling); Warning: rand(): Invalid range: 10..99 in c:\my documents\ezone\testing\signup2.php on line 49 Can someone please tell me where i went wonr gin this co

[PHP] RE: overloading variables in child classes

2001-10-27 Thread Andrew Kirilenko
ble once again in the derived class. In C++ you will get comilation error in this case. Best regards, Andrew Kirilenko. > -Original Message- > From: Alain Dresse [mailto:[EMAIL PROTECTED]] > Sent: Saturday, October 27, 2001 10:12 PM > To: [EMAIL PROTECTED] > Subject: [PHP] o

[PHP] RE: can't seem to compile 4.0

2001-10-27 Thread Andrew Kirilenko
Hello! Yiu must have linux includes installed. Best regards, Andrew Kirilenko. > -Original Message- > From: Ray Todd Stevens [mailto:[EMAIL PROTECTED]] > Sent: Saturday, October 27, 2001 8:56 PM > To: [EMAIL PROTECTED] > Subject: [PHP] can't seem to compile 4.0

Re: [PHP] help needed for multimania.com

2001-10-27 Thread Andrew Brampton
http://babelfish.altavista.com That URL may help you translate the page... Andrew - Original Message - From: "Kamran H. Hassan" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, October 27, 2001 7:22 PM Subject: [PHP] help needed for multimania.com Hi

Re: [PHP] How Do I Re-Compile PHP4

2001-10-28 Thread Andrew Brampton
this on then just use the computer you are using at the moment. U can more than easily set up a Dual Boot of Windows & 1gig Linux partions... I think this is allways a good general admin tip to carry out Andrew - Original Message - From: "Jeff Gannaway" <[EMAIL PROTECTED]&

[PHP] String handling with special char?

2001-10-30 Thread Andrew Cowles
Hi Guys & Gals, Sorry to re-post this but I'm still stuck and have had no reply. I receive via HTTP GET a string variable in encoded HEX format, for example; script.php?text=%0A%01%00%B1%B2 My problem is that PHP sees the first occurance of %00 as a field terminator and so anything after it is

Re: [PHP] String handling with special char?

2001-10-30 Thread Andrew Cowles
few emails behind > > $parameters = url_encode("error=25"); > index.htm?$parameters > > Hope this helps > > - Original Message - > From: "Andrew Cowles" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Tuesday, Octob

Re: [PHP] String handling with special char?

2001-10-30 Thread Andrew Cowles
27;script.php?text=%0A%01%00%B1%B2' > > what you should send in order to work properly > > 'script.php?text= %250A%2501%2500%25B1%25B2' > > Note that all % were changed by %25. > > I tested it and it worked. > > Hope this helps > > > >

RE: [PHP] Installing ODBC

2001-10-30 Thread Andrew Hill
Hi, You should compile --with-iodbc pointing to the odbcsdk directory, not just the libiodbc file. The SDK is available at www.iodbc.org. You will also need your LD_LIBRARY_PATH varible set to include the directory where libiodbc is. Best regards, Andrew Hill Director of Technology Evangelism

RE: [PHP] Desperate: odbc_connect() does not work! Please help!

2001-10-31 Thread Andrew Hill
as appropriate? e.g.: setenv("ODBCINI=/path/to/odbc.ini"); setenv("LD_LIBRARY_PATH=/path/to/your/driver/manager/lib"); You may also which to try this connection with odbctest, a sample application available in the iODBC SDK at www.iodbc.org. HTH! Best regards, Andrew Hill Di

RE: [PHP] Desperate: odbc_connect() does not work! Please help!

2001-10-31 Thread Andrew Hill
x.htm. Best regards, Andrew Hill Director of Technology Evangelism OpenLink Software http://www.openlinksw.com Universal Data Access & Data Integration Technology Providers > -Original Message- > From: Kraa de Simon [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, October 31, 200

RE: [PHP] Desperate: odbc_connect() does not work! Please help!

2001-10-31 Thread Andrew Hill
Kraa, Sorry for the confusion; we should have that component available by the end of the week. Best regards, Andrew > -Original Message- > From: Kraa de Simon [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, October 31, 2001 2:50 PM > To: '[EMAIL PROTECTED]'

RE: [PHP] WindowsXP, PHP4 and MS SQL functions

2001-10-31 Thread Andrew Kirilenko
Hello! Have you specified path to extensions? In my case: extension_dir = c:/apps/php/extensions/ Best regards, Andrew Kirilenko. > -Original Message- > From: Brandon Orther [mailto:[EMAIL PROTECTED]] > Sent: Thursday, November 01, 2001 1:41 AM > To: PHP User Group >

RE: [PHP] Week of month

2001-11-01 Thread Andrew Braund
How about; echo "It is week ".((int)(date("j")/7)+1)." of the month."; > -Original Message- > From: Jon Farmer [mailto:[EMAIL PROTECTED]] > Sent: Thursday, 1 November 2001 20:14 > To: PHP Masters; Sheni R. Meledath > Subject: Re: [PHP] Week of month > > > > Is there any way to find out

Re: [PHP] documentation comment

2001-11-04 Thread Andrew Brampton
Have you seen a MSDN subscription latly? Its many many CDs of Help Files and such... Php.net has comments added by coders on the end, but other than that they have nothing over M$ unless i'm missing something? Andrew - Original Message - From: "Jack Dempsey" <[EM

[PHP] data storage strategies

2001-11-04 Thread Andrew Laignel
I have been making a website based on the concept of 'no html' which means everything is stored either as a file or as a db entry accessed through the admin section. there are 2 types of pages - a list page and an normal page. normal pages are basically a unique page, such as 'about', list pag

Re: [PHP] Nope: Text Wrapper

2001-11-10 Thread Andrew Brampton
now use explode with /n as the seprating character, Andrew - Original Message - From: "jtjohnston" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, November 10, 2001 9:15 AM Subject: [PHP] Nope: Text Wrapper > In This case, nope, won't work: &

RE: [PHP] imageCopy :-(

2001-11-10 Thread Andrew Kirilenko
Hello! You should open "test.bmp" first. Best regards, Andrew Kirilenko. > -Original Message- > From: jtjohnston [mailto:[EMAIL PROTECTED]] > Sent: Saturday, November 10, 2001 1:15 PM > To: [EMAIL PROTECTED] > Subject: [PHP] imageCopy :-( > > >

RE: [PHP] Re: Faking MS Access on MySQL linux box

2001-11-12 Thread Andrew Hill
John, OpenLink's Multi-Tier drivers can get you from Linux to MSAcess on Windows. Mweb, I'd just use ODBC against MySQL for testing. There isn't any way to actually run an Access DB on Linux. Best regards, Andrew Hill Director of Technology Evangelism OpenLink

RE: [PHP] Anyone knows how to prevent nonACSII chars convertion with MSSQL?

2001-11-14 Thread Andrew Hill
Tomaz, In spite of your ODBC adversion it may be your best bet :) One related option - OpenLink has a FreeTDS based driver available that you may wish to try. Please let me know if you require assistance. Best regards, Andrew Hill Director of Technology Evangelism OpenLink Software http

RE: [PHP] newbie question about odbc_connect

2001-11-14 Thread Andrew Hill
- you may also use the above method to piggyback a Linux ODBC DSN onto a local or remote JDBC Driver instead of an ODBC driver; let me know if you require assistance. Best regards, Andrew Hill Director of Technology Evangelism OpenLink Software http://www.openlinksw.com Universal Data Access &

Re: [PHP] Re: executing another php.script

2001-11-15 Thread Andrew Brampton
How about you do readfile('http://server.com/yourPHP.php'); That just opens that file, ie the same as clicking it... Andrew - Original Message - From: "David Tod Sigafoos" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, November 15

RE: [PHP] url exist?

2001-11-15 Thread Andrew Kirilenko
Hello! The simpliest way: $f = @fopen("http://foobar.baz/somefile.ext";, "r"); if ($f) { fclose($f); echo "exists!" } else { echo "no exists!" } Best regards, Andrew Kirilenko. > -Original Message- > From: jtjohn

RE: [PHP] Re: strpos

2001-11-15 Thread Andrew Kirilenko
Hello! if (!strpos(...)) will be better... Best regards, Andrew Kirilenko. > -Original Message- > From: Martin Thoma [mailto:[EMAIL PROTECTED]] > Sent: Friday, November 16, 2001 9:28 AM > To: [EMAIL PROTECTED] > Subject: [PHP] Re: strpos > > > strpos return f

RE: [PHP] Regular expressions?

2001-11-15 Thread Andrew Kirilenko
at least.Or try to find some good perl book (there are a lot of free in the net). Or type "regexp tutorial" in google. > Should I use the ereg- oder preg-functions? I prefer preg style, because of more flexible and powerful syntax. Best regards, Andrew Kirilenko. > -Origina

RE: [PHP] Re: strpos

2001-11-15 Thread Andrew Kirilenko
Oops. Forgot about 0 return ;( > -Original Message- > From: Martin Thoma [mailto:[EMAIL PROTECTED]] > Sent: Friday, November 16, 2001 9:42 AM > To: [EMAIL PROTECTED] > Subject: Re: [PHP] Re: strpos > > > > if (!strpos(...)) > > will be better... > > Why? > > > > -- > PHP General Ma

RE: [PHP] Parse POST-Data myself

2001-11-16 Thread Andrew Forgue
On Fri, 2001-11-16 at 10:19, Matthew Luchak wrote: > > If you know the setup of the form beforehand it is relatively easy to do > something like : > > $string="$myfield1[0] $myfield2[0] $myfield1[1] $myfield2[1] etc..." > > However I remember one of my stupid mistakes awhile ago was mistakenly

[PHP] RE: webmaster@php.net dude

2001-11-16 Thread Andrew Chase
I'm cheap too. That's why I use a free editor that does support line numbers, like ConTEXT (http://www.fixedsys.com/context/) or EMACS. It's been a long time since I had debugged anything in PERL, but it seems to me that knowing exactly which line the problem is occurring on is a lot more helpfu

RE: [PHP] What's wrong with this date ?

2001-11-17 Thread Andrew Forgue
Well it should be '$date', Also.. If the column type is date and you are entering it for a form, check to make sure you are typing it in ok and you trim() the variable if It still doest work... do a before the mysql_query() and see exactly what its inserting... -Original Message- F

RE: [PHP] Setting up PHP and ODBC on Linux

2001-11-19 Thread Andrew Hill
Mweb, The iODBC site is back up; I recommend downloading the iODBC SDK and using that. I apologize for the inconvenience; we had a power station fire in the neighborhood! Best regards, Andrew Hill Director of Technology Evangelism OpenLink Software http://www.openlinksw.com Universal Data

RE: [PHP] Desperate: odbc_connect() does not work! Please help!

2001-11-19 Thread Andrew Hill
Simon, You may use the 91b driver against a 91c database, connecting in sockets, or you may use the 91 object file we ship and relink it against your 91c installation to produce a shared-memory version. Best regards, Andrew Hill Director of Technology Evangelism OpenLink Software http

RE: [PHP] odbc with access on win2k

2001-11-20 Thread Andrew Hill
Paul, Use a System DSN. Best regards, Andrew Hill Director of Technology Evangelism OpenLink Software http://www.openlinksw.com Universal Data Access & Data Integration Technology Providers > -Original Message- > From: Paul Roberts [mailto:[EMAIL PROTECTED]] > Sent: Tues

[PHP] RE: php-general Digest 23 Nov 2001 14:10:17 -0000 Issue 1011

2001-11-26 Thread Andrew Chase
You might want to give 'wget' a try - it's a GNU utility for downloading mirrors of web sites: http://www.gnu.org/software/wget/wget.html If you use it with the '-r' and '-k' options it will crawl your site recursively, and convert absolute links to relative ones in the downloaded HTML files. >

[PHP] RE: color problems when resizing image with GD

2001-11-29 Thread Andrew Chase
Are you using GD 2.0.1 and PHP 4.0.6? If yes then try $dst_img = ImageCreateTrueColor ($new_w,$new_h); (http://www.php.net/manual/en/function.imagecreatetruecolor.php) -Andy > -Original Message- > From: Michael Hall [mailto:[EMAIL PROTECTED]] > Subject: color problems when resizing

[PHP] HTTP_SESSION_VARS != Work

2001-12-01 Thread Andrew Forgue
t know where to go to fix this. The Php.ini file says: register_globals: on and I compiled it with --enable-track-vars (even though it should be on by default) PHP version is 4.0.6 with apache 1.3.22 Anyone seen this problem or know how to fix? Thanks, Andrew

RE: [PHP] URGENT: IIS server now OK, but MS access DB not reachable

2001-12-04 Thread Andrew Hill
mweb, Are you using a File or User DSN? You DSN "domain" needs to be a working System DSN, succesfully tested in your ODBC Adminsistrator. Best regards, Andrew Hill Director of Technology Evangelism OpenLink Software http://www.openlinksw.com Universal Data Access & Data Integrat

Re: [PHP] small window scripts in Javascript?

2001-12-04 Thread Andrew Brampton
page, which would allow you to pass the image to it as a variable, For example: image.php?img=myPicture.jpg Hope this helps Andrew - Original Message - From: "Wee Chua" <[EMAIL PROTECTED]> To: "'Michael Rudel'" <[EMAIL PROTECTED]> Cc: "PHP (E-m

RE: [PHP] Dynamically created dropdowns

2001-12-04 Thread Andrew Chase
That's true, but you could use PHP and the MySQL data to generate the JavaScript arrays for the dynamic menus... you can escape into PHP within the

RE: [PHP] Column name not liked by PHP/ODBC and Access

2001-12-04 Thread Andrew Hill
mweb, Just a guess - is Note a reserved word? you might want to quote/escape it. Best regards, Andrew Hill Director of Technology Evangelism OpenLink Software http://www.openlinksw.com Universal Data Access & Data Integration Technology Providers > -Original Message- >

RE: [PHP] : IIS server doesn't recognize PHP pages

2001-12-04 Thread Andrew Chase
I'm not at all familiar with IIS, but in Apache terms it sounds like a MIME type problem; the server doesn't know what to do with .PHP files, so it assumes they're something that should be sent as a download/attachment instead of parsing with PHP and sending as HTML - I would imagine there would b

[PHP] RE: banner management system

2001-12-04 Thread Andrew Chase
Try PhpAdsNew - it uses a MySQL backend: http://sourceforge.net/projects/phpadsnew/ It may not be what you're looking for if your site gets *extreme* amounts of traffic, but otherwise it's quite capable. (And free. :) ) -Andy > -Original Message- > From: Ali [mailto:[EMAIL PROTECTED]]

Re: [PHP] PHP newbie alert

2001-12-04 Thread Andrew Forgue
L PROTECTED] > > I myself use VIM. Http://www.vim.org ( Yes, There IS a windows version) Pros: Very, Very Stable. Excellent Syntax higlighting Many, Many Features Cons: If you have never touched a 'vi' based UNIX editor, you probably cant use this. Dont let this de

RE: [PHP] FreeBSD 4.3, PHP 4.0.6 & unixODBC -- Undefined Symbol

2001-12-05 Thread Andrew Hill
Joe, What is the problem you were having with OpenLink and iODBC under BSD? If threading errors, you can simply download the non-threaded version of the SDK and drivers from our site. Best regards, Andrew Hill Director of Technology Evangelism OpenLink Software http://www.openlinksw.com

[PHP] Simple(?) Question

2001-12-05 Thread Andrew Forgue
Hello, Is there a way to "post" to a script without any user interventions... e.g The user posts to a script, and the script posts back to the original one. Thanks!

Re: [PHP] parse error when requiring

2001-12-06 Thread Andrew Forgue
Maybe you could give a little more info on what the parse error actually says? On Thu, 2001-12-06 at 06:51, Oosten, Sjoerd van wrote: > I have a question about require... > > I have a session_start() on top of every page and an if-else construction. > session_start() > if ($SessieEIA->Login

RE: [PHP] Re: Image problem

2001-12-07 Thread Andrew Chase
PHP needs to be compiled with libjpeg and libpng in addition to the GD library to use those formats respectively. The PHP manual section covering image functions (including those for manipulating JPEGs and PNGs) is at http://www.php.net/manual/en/ref.image.php -Andy > -Original Message--

Re: [PHP] Costum Error Page

2001-12-08 Thread Andrew Brampton
how about you make a phpInfo() page, and set that as 404 error, then you can find the correct variable to use :) Andrew - Original Message - From: "Daniel Urstöger" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, December 08, 2001 12:43 PM Subject: Re: [

Re: [PHP] copy image from database

2001-12-08 Thread Andrew Brampton
read the specs on copy() it copys a source file to a destination file... You are not copying files!... You should use something like fwrite to write the contents of $image to a file... Andrew - Original Message - From: "Jan Grafström" <[EMAIL PROTECTED]> To: <[EMA

[PHP] SQL Query Question

2001-12-08 Thread Andrew Brampton
many people are above him... This method would work, but would be slow (and wastful), is there a better way to determine his position with a SQL Query? Thanks in advance Andrew P.S If it matters I'm using MySQL & PHP 4.0.6 on WinXP under Apache 1.3.22

Re: [PHP] How to compute time to load page...

2001-12-08 Thread Andrew Forgue
Or this: at the beginning of your script, get the time using microtime then at the bottom, you could get the time again, subtract the difference and voila, thats how long the execution time of your script is. -ajf - Original Message - From: "Jack Dempsey" <[EMAIL PROTECTED]> To: "Torki

RE: [PHP] UPDATE Query works in odbc/Mysql, but fails in odbc/MS Access

2001-12-06 Thread Andrew Hill
mweb, MS points to a datetime issue: http://support.microsoft.com/default.aspx?scid=kb;EN-US;q246570 As far as a reference - I'm guessing somewhere on MS's site? Best regards, Andrew Hill Director of Technology Evangelism OpenLink Software http://www.openlinksw.com Universal D

RE: [PHP] Problem connecting to mysql via odbc

2001-11-30 Thread Andrew Hill
Mweb, Set your ODBCINI environment variable (and others) as per the HOWTO at www.iodbc.org. This HOWTO is for iODBC, but the concepts are the same for this error condition. Best regards, Andrew Hill Director of Technology Evangelism OpenLink Software http://www.openlinksw.com Universal Data

RE: [PHP] Re: FOLLOW UP on "column names not liked by odbc/php/access"

2001-12-05 Thread Andrew Hill
mweb, I suggest you use the ODBC Metadata functions in PHP to describe your database, e.g. odbc_tables, odbc_columns, odbc_primarykeys, odbc_foreignkeys, etc. Best regards, Andrew Hill Director of Technology Evangelism OpenLink Software http://www.openlinksw.com Universal Data Access &

[PHP] Re: introduction

2001-12-09 Thread Andrew Forgue
Glad to hear it :-) - Original Message - From: "Oliver Keller" <[EMAIL PROTECTED]> Newsgroups: php.general To: <[EMAIL PROTECTED]> Sent: Sunday, December 09, 2001 12:16 PM Subject: introduction > hi folks, > > > > being new to php, I just subscribed to this list - so I find someone to a

Re: [PHP] help with ftp command

2001-12-09 Thread Andrew Brampton
How about you just create the file locally (with some random name) upload it (with correct name) then delete the local copy... Andrew - Original Message - From: "Kansas Territory" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, December 09, 2001 5:32 PM Su

Re: [PHP] variables

2001-12-10 Thread Andrew Brampton
meter, the other one is Actual parameter (/me prays I got that the right way around :)) Andrew - Original Message - From: "Lennart Johansen" <[EMAIL PROTECTED]> To: "PHP MailingList" <[EMAIL PROTECTED]> Sent: Monday, December 10, 2001 9:13 AM Subject: [PHP

RE: [PHP] Logo proposal

2001-12-11 Thread Andrew Chase
Maybe an animal beginning with "P" would be a good Mnemonic device (and good for alliteration; think "The PHP Panda" or "The PHP Platypus".) Hmm, I guess Panda and Platypus aren't particularly "powerful" animals, though. :/ Other animals beginning with "P": Pelican Panther (cheesy) Polliwog Pro

Re: [PHP] PHP 4.1.0 Compiling on OS X

2001-12-13 Thread Andrew White
e build process is somehow horribly broken under 10.1 What you might be able to do is compile a DSO on 10.0.4 and then copy it to your 10.1 machine. Andrew -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL P

Re: [PHP] Need high bandwidth provider for my Asian community site

2001-12-13 Thread Andrew Brampton
is for you unless it was your own dedicated box. Hope these suggestions help you some how Andrew - Original Message - From: "sunny AT wde" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, December 13, 2001 1:13 PM Subject: Re: [PHP] Need high bandwidth prov

Re: [PHP] Sending out mass mail without having timeout problems ..

2001-12-13 Thread Andrew Brampton
You can set the max_timeout varible to zero at the begining of the script and it will continue forever... I once did this for a PHP IRC Bot... (which was kinda cool :)) Andrew - Original Message - From: "bain" <[EMAIL PROTECTED]> To: "jimtronic" <[EMAIL PROT

RE: [PHP] Logo proposal - voting script!

2001-12-14 Thread Andrew Chase
Hmm, I get a 404 error as of 17:44 GMT. I hope that 'Mole' is one of the options on the list... I'm kind of inclined to defer to Rasmus on the issue anyway, what with him being the guy responsible for creating PHP in the first place. :) I'm also keeping in mind that (unless I missed something),

RE: [PHP] PHPhish Logo

2001-12-14 Thread Andrew Chase
Already used by PostgreSQL :) http://www.postgresql.org > -Original Message- > From: John Lim [mailto:[EMAIL PROTECTED]] > > P for Pachyderm! -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: [PHP] PHP + DB2

2001-12-17 Thread Andrew Hill
Rares, Using ODBC should be fine; what problems are you having with input/output parameters? Also, what ODBC drivers are you using? Best regards, Andrew Hill Director of Technology Evangelism OpenLink Software http://www.openlinksw.com Universal Data Access & Data Integration Techno

Re: [PHP] Help with select boxes

2001-12-22 Thread Andrew Brampton
I don't think what you want to do is possible.. and it is a HTML problem :).. Maybe JScript could do it by populating the dropdown once you click it, but I don't know if thats possible... Andrew - Original Message - From: "Sam" <[EMAIL PROTECTED]> To: <[EMA

Re: [PHP] Client side fatal PHP error

2001-12-25 Thread Andrew Brampton
because the way && is evaluated. if the first part of the && expression is false, then it doesn't even attempt to look at the second part, meaning you get a fastest evaluation :)... I think its called Lazy Logic or something, I know its in the PHP Manual somewhere :)

Re: [PHP] mssql

2001-03-24 Thread Andrew Hill
ad is available at http://www.openlinksw.com and a HOWTO on compiling iODBC in with PHP (this is the Driver Manager, which is needed to use any ODBC drivers with Apache/PHP) is available at www.iodbc.org Hope this helps. Best regards, Andrew --- Andrew Hill - Ope

RE: [PHP] Delaying Printed Output

2001-03-25 Thread Andrew Braund
RandomString"); but it makes no difference, the behaviour is identical. IE5 does not seem to understand multipart. The multipart mime boundary does not seem to be working properly in Netscape4.6. Regards Andrew Braund > -Original Message- > From: Greg Scott [mailto:[EMAIL PRO

Re: [PHP] Is it possible to have href link refer to same PHP file?

2001-03-27 Thread Andrew Hill
Just check the value of the submit variable. If it's populated, then the form has been clicked. Best regards, Andrew --- Andrew Hill - OpenLink Software Director Technology Evangelism eBusiness Infrastructure Technology http://www.openlinksw.com On 3/27

Re: [PHP] Case?

2001-03-29 Thread Andrew Rush
on 3/29/01 12:14 PM, [EMAIL PROTECTED] splat open and thusly melted: > if so where I can > find them detailed in the online docs? look under switch, in control structures. -- :: Andrew Rush :: Lead Systems Developer :: MaineTod

[PHP] RE: what exactly are /path/to/blah looking for? .h? .so? .a? what?!

2001-03-30 Thread Andrew Hill
Daevid, It's the path/to/odbcsdk It's looking for libiodbc.so :) Best regards, Andrew ------ Andrew Hill - OpenLink Software Director Technology Evangelism eBusiness Infrastructure Technology http://www.openlinksw.com > -Original Messag

[PHP] Re: [PHP-DB] RE: [PHP] RE: what exactly are /path/to/blah lookingfor? .h? .so? .a? what?!

2001-03-30 Thread Andrew Hill
Daevid, just --with-iodbc or --with-openlink is fine. you should be using either: --with-iodbc=/usr/local/openlink/odbcsdk \ or --with-openlink=/usr/local/openlink/lib \ depending on which you use and where you installed the sdk. what error are you getting? Best regards, Andrew On 3/30/01

[PHP] setcookie().. how to retrieve data afterward?

2001-04-01 Thread Andrew Rose
echo" no cookie set ...\n"; } to see if its there.. now this is the closest Ive seen anyone else do it and to me it dosnt make much sense at all the code for retrieving.. also it dosnt work.. suprise suprise.. so anyone know how to do this? thanks in advance -Andrew Rose -- PHP Gener

Re: [PHP] setcookie().. how to retrieve data afterward?

2001-04-01 Thread Andrew Rose
ariable to store "chocalate chip". >Now if you want to see the value from within a function you will need to also do >this: > > global $HTTP_COOKIE_VARS; > >this will enable you to see the values stored in the cookies. > >Andrew Rose wrote: > >> Ive been play

Re: [PHP] Hosting for FREE??

2001-04-02 Thread Andrew Halliday
Try these: http://www.uklinux.net/ http://www.any.za.net/ http://hosting.datablocks.net/free/ AndrewH - Original Message - From: "Frank K" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, April 03, 2001 9:41 AM Subject: [PHP] Hosting for FREE?? Hi, I am just learning PH

Re: [PHP] RE: [PHP-DB] help with compiling ODBC into PHP4

2001-04-02 Thread Andrew Hill
pen40/l3ko.taz (also available from iODBC.org). If you need other platforms, go to: http://www.iodbc.org/opliodbc.htm (iODBC) or http://www.openlinksw.com/main/softdld.htm (OpenLink) Best regards, Andrew --- Andrew Hill - OpenLink Software Director Techn

[PHP] Re: [PHP-DB] PHP4.0.4 segfaults with odbc_pconnect

2001-04-02 Thread Andrew Hill
in the environmnet, or odbctest wouldn't show your DSNs. So fix the ServerType, ensure working server-side components, and change your connection syntax for odbctest - you actually are just about there. Let me know if you need additional assistance. Best regards, Andrew

[PHP] iODBC Mac OS X HOWTO

2001-04-03 Thread Andrew Hill
m any relational database. I'll be uploading it to the www.iodbc.org site, but if anyone would like to comment on the initial draft, it's attached to the post. Any and all feedback is welcome - tell me anything is not clear! Best regards, Andrew -- Andrew

[PHP] RE: [PHP-DB] iODBC Mac OS X HOWTO

2001-04-03 Thread Andrew Hill
Okay, so no attachments to the lists :) Here is the HOWTO: http://www.iodbc.org/osxphp_iodbc.htm Best regards, Andrew -- Andrew Hill - OpenLink Software Director Technology Evangelism eBusiness Infrastructure Technology http://www.openlinksw.com office

RE: [PHP] Java applet can't read PHP output !!

2001-04-03 Thread Andrew Braund
Try putting \n at the end of each line of your php print, your applet is using readline() so waiting for newline character (\n). hth Andrew Braund > -Original Message- > From: Peter Choynowski [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, 4 April 2001 06:08 > To: [EMA

RE: [PHP] Java applet can't read PHP output !!

2001-04-03 Thread Andrew Braund
Works for me! I don't think PHP is the problem. I first tried this with PHP as cgi and it worked fine, then retested with PHP as module and still worked fine. Platform; NT4 SP6 Server Version: Apache/1.3.19(Win32) mod_jk PHP/4.0.4pl1 DAV/1.0.2 applet code; ==8<===

RE: [PHP] read headers.

2001-04-04 Thread Andrew Braund
wget -s apache.org works on *nix or windows, puts all headers and content to a file eg saves to index.html which contains; ==8< HTTP/1.1 200 OK Date: Wed, 04 Apr 2001 09:13:58 GMT Server: Apache/2.0.16 (Unix) Cache-Control: max-age=0 ===8<=== etc then content PS Apach

Re: [PHP] BUG - Someone else please verify B4 I file

2001-04-04 Thread Andrew Rush
at day andy -- *** Andrew Rush :: Lead Systems Developer :: MaineToday.com *** "A friend of the devil is a friend of mine" - R. Hunter -- PHP General Mailing List (http://www.php.ne

[PHP] RE: [PHP-DB] mysql_result()

2001-04-04 Thread Andrew Hill
Jordan, If you know your result is going to product one row, try using: $row=mysql_fetch_array($result, MSQL_ASSOC); // returns an assoc array where the field names are keys, field value is value $id=row[id]; $name=row[name]; etc. Best regards, Andrew

Re: [PHP] MySql: Default values

2001-04-10 Thread Andrew Rush
automatically have a timestamp inserted into a record, make a new field of type timestamp that is not null. if you don't insert any value into the timestamp field it will use the current date-time. have a great day andy -- *** Andrew R

Re: [PHP] upload on Win9x

2001-06-19 Thread Andrew Halliday
Have you set the content type of the form to be multipart MIME ? That screws me every time... AndrewH - Original Message - From: "Christian Dechery" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, June 19, 2001 11:16 AM Subject: [PHP] upload on Win9x > I can't get file uplo

Re: [PHP] Pie Charts & Bar Charts & Line Charts...

2001-06-19 Thread Andrew Halliday
For basic bars, use tables with divs whose width is set to a percentage of the table cell size using the style attribute eg: number of unemployed For XY scatters, PHPs dynamic graphic producing capabilities are excellent. See attached image for what ive done with it (plotting handwriting bas

Re: [PHP] Starting session

2001-06-19 Thread Andrew Halliday
Just make it so that a successful login process involves setting a session variable. In all pages that require a login, check that the session variable exists. In any other pages, just ignore it. Simple as that! Now just read the php documentation on how to do it ... (ie using the session_* comma

RE: [PHP] PHP Interact with DreamWaver

2001-06-19 Thread Andrew Hill
Jack, Check out www.interakt.ro Best regards, Andrew > -Original Message- > From: Jack [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, June 19, 2001 6:45 AM > To: [EMAIL PROTECTED] > Subject: [PHP] PHP Interact with DreamWaver > > > Dear All > I'm fres

<    1   2   3   4   5   6   7   8   9   10   >