[PHP] Re: Please save me from insanity - PHP4 / OO

2004-12-05 Thread Ben
Thanks a lot Greg - those pesky s! Code now all working... Greg Beaver wrote: Ben wrote: class Ob { var $prop; } class Test { function setMe($ob) { $ob-prop = $this; } } $ob = new Ob(); $test = new Test(); $test-setMe($ob); if ($ob-prop) error_log(PHP is OK); You should use

[PHP] 4.3.10 breaking things?

2004-12-17 Thread Ben
? - Ben -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: 4.3.10 breaking things? Back working after reverting to 4.3.9

2004-12-17 Thread Ben
Ben wrote: Hi All, I just upgraded to 4.3.10 and have found a number of scripts have broken including: phpMyAdmin-2.6.1-rc1 squirrelmail-1.4.3a + the xss patch I know, bad form replying to one's own message... Reverting back to 4.3.9 with the same build configuration options used in 4.3.10 has

[PHP] Re: PHP + MSSQL Problem

2004-12-18 Thread Ben
this may not be necessary, I have never tried on windows. - Ben -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: 4.3.10 breaking things? Back working after reverting to 4.3.9

2004-12-18 Thread Ben
Michael Sims wrote: Ben wrote: Reverting back to 4.3.9 with the same build configuration options used in 4.3.10 has fixed the problems with the various scripts. Do you use Zend Optimizer? No, but thanks for the suggestion! Turning off php accelerator in my php.ini seems to have solved

Re: [PHP] Using encrypted passwords

2004-12-20 Thread Ben
to decrypt the file came from the web site user over an SSL encrypted session, otherwise you are simply moving your plain text information to a different file. - Ben -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Newbie, easy question...

2004-12-21 Thread Ben
foreach($_POST as $key = $value) { $_POST[$key]=strip_tags($value); } print(p.$_POST['fusername']. .$_POST['lusername']./p); ? - Ben -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP Exploit via phpBB?

2004-12-22 Thread Ben
Ashley M. Kirchner wrote: You're missing the fact that you need to read phpBB's web site from time to time. And subscribe to BugTraq. It would have given you a month's warning. - Ben -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: 4.3.10 failure

2004-12-29 Thread Ben
will likely find a solution. - Ben -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] How to argue with ASP people...

2004-12-30 Thread Ben
into a particular OS or web server allows for much more flexibility as you go forward. - Ben -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] sending multiple headers (session_start() and setcookie() )

2005-01-08 Thread Ben
() and setcookie() before html? Thanks for your time! Ben -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] this has got me baffled: imagesx() and imagesy() reporting the wrong size?

2009-11-15 Thread Ben
On my site I have a web form for users to upload graphics, however there are constraints on the size allowed. Recently, a user has been having problems, because the code is reporting the wrong size - a size too small to be allowed! They sent me a copy of the image so I could confirm the

Re: [PHP] this has got me baffled: imagesx() and imagesy()reporting the wrong size?

2009-11-15 Thread Ben
Ashley Sheridan wrote: On Sun, 2009-11-15 at 15:07 -0500, Ben wrote: On my site I have a web form for users to upload graphics, however there are constraints on the size allowed. Recently, a user has been having problems, because the code is reporting the wrong size - a size too small

[PHP] Re: Help needed with calculation

2009-11-15 Thread Ben
Chris Payne wrote: Hi everyone, I'm not sure of the correct formula for this, if I have a file - just for example, that is 10245458756 bytes long and the download speed is 60KB a second, what formula would I use to calculate how many seconds/minutes/hours it would take to download the file?

Re: [PHP] this has got me baffled: imagesx() andimagesy()reporting the wrong size?

2009-11-15 Thread Ben
Ashley Sheridan wrote: On Sun, 2009-11-15 at 16:25 -0500, Ben wrote: Ashley Sheridan wrote: On Sun, 2009-11-15 at 15:07 -0500, Ben wrote: On my site I have a web form for users to upload graphics, however there are constraints on the size allowed. Recently, a user has been having problems

[PHP] Re: Can I get the IP address from a visitor?

2009-12-01 Thread Ben
I happen to have grabbed this function from php.net a while back, and have been using it since: // by fr600 at hotmail dot com at http://us2.php.net/getenv function getip() { if(getenv('HTTP_CLIENT_IP') strcasecmp(getenv('HTTP_CLIENT_IP'), 'unknown')) $ip = getenv('HTTP_CLIENT_IP');

[PHP-CVS] cvs: php4 / README.Zeus /sapi/isapi php4isapi.c

2001-01-16 Thread Ben Mansell
joostersTue Jan 16 02:44:52 2001 EDT Modified files: /php4 README.Zeus /php4/sapi/isapiphp4isapi.c Log: @ Support Zeus 3.3.8 Added changes to environment variable manipulations, to support Zeus 3.3.8 and increase compatibility between

[PHP-CVS] cvs: php4 / README.Zeus

2001-01-24 Thread Ben Mansell
joostersWed Jan 24 10:20:36 2001 EDT Modified files: /php4 README.Zeus Log: Added 'you must use gcc' comment to build instructions. Index: php4/README.Zeus diff -u php4/README.Zeus:1.7 php4/README.Zeus:1.8 --- php4/README.Zeus:1.7Tue

Re: [PHP] Strange Parser error

2001-02-01 Thread Ben Peter
Phil, posting the scrpit would be good, it's hard to say anything without having seen it. Ben Phil Daintree wrote: I have been working on a script and come to a brick wall which I can't break... I am using Suse Linux 2.2 kernel, PHP4.04pl1 Mysql 3.22 Mod_ssl open_ssl - this is running

Re: [PHP] Why sprintf for query?

2001-02-01 Thread Ben Peter
of storing it in a variable before. Cheers, Ben "Karl J. Stubsjoen" wrote: Sprintf formats strings and numbers to a specific format (correct?) then why is this $q = SPRINTF("SELECT prodnum, childdesc FROM prodaval"); like that? Why SPRINTF in this case? We are c

[PHP] List archives with PHP frontend

2001-02-01 Thread Ben Peter
by a php interface. I guess there must be some off-the-shelf solution to this (or at least each of the components separately), but I have not seen it. Thanks for your help, Ben -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail

Re: [PHP] contracting consulting (was [PHP] Pricing for PHP programming???)

2001-02-01 Thread Ben Peter
Hi Ben, I know that that Java/EJB/JSP and COM/ASP is in MUCH more demand, and therefore command a higher wage. Demand vs supply, right?. A search today on monster.com for ASP in LA yields 142 listings, Java yields 262, JSP yields 32, Perl yields 105, PHP yields 16, cold fusion yields 16

Re: [PHP] What In the WORLD???

2001-02-02 Thread Ben Ocean
I figured out a work-around... // had to remove this line: if ( $k == "id" $v != "0" ) { if ( $seatingz == "9" || $aa == $seatingz ) { if ( $colorz == "9" || ( $cc == $colorz || $dd == $colorz || $ee == $colorz )) { if ( $typez == "9" || $gg == $typez ) { if ( $ != $ ) { // to keep

Re: [PHP] PHP hosting - the final frontier.

2001-02-03 Thread Ben Peter
to be granted connect privileges to the mysql database - no offense meant! I think it's just too much for one man, you cannot be available 24/7, and you will want holidays. Still, a PHP-specialized hosting environment would be worth much. Cheers, Ben Chris Mason wrote: I see a lot of traffic

Re: [PHP] passing variables

2001-03-03 Thread Ben Weinberger
ld then pass any variables you wanted to the next page... -Ben At 03:49 PM 3/3/2001 +0100, Ernest E Vogelsinger wrote: At 15:41 03.03.2001, george said: [snip] I plan to add hidden fields for all the information pulled out the db my question is

Re: [PHP] passing variables

2001-03-03 Thread Ben Weinberger
You could make them on the same page with a PHP statement something like: if ($Reply) { //put your reply script here } elseif ($Delete) { //put your delete script here } Just make sure the name and value of the input tags on the previous page are called Reply and Delete. Best, -Ben At 03

[PHP-CVS] cvs: php4 /sapi/isapi php4isapi.c

2001-03-06 Thread Ben Mansell
joostersTue Mar 6 07:09:15 2001 EDT Modified files: /php4/sapi/isapiphp4isapi.c Log: Thread hashtable was being initialized with a size of 1! Changed to 128 as a more sensible number. # Also could change the 'expected resources' parameter from 1,

[PHP-CVS] cvs: php4 /sapi/isapi php4isapi.c

2001-03-07 Thread Ben Mansell
joostersWed Mar 7 02:28:00 2001 EDT Modified files: /php4/sapi/isapiphp4isapi.c Log: Added support for Zeus SSL client certificate information. Added SERVER_SIGNATURE to the environment. Submitted by: [EMAIL PROTECTED] Index:

[PHP-CVS] cvs: php4 / Makefile.in configure.in /sapi/fastcgi CREDITS Makefile.in README.FastCGI config.m4 fastcgi.c php.sym php_fastcgi.h

2001-03-19 Thread Ben Mansell
://www.php.net/license/2_02.txt. | | If you did not receive a copy of the PHP license and are unable to | | obtain it through the world-wide-web, please send a note to | | [EMAIL PROTECTED] so we can mail you a copy immediately.

[PHP-CVS] cvs: php4 / README.Zeus /sapi/isapi config.m4

2001-03-19 Thread Ben Mansell
joostersMon Mar 19 03:23:57 2001 EDT Modified files: /php4 README.Zeus /php4/sapi/isapiconfig.m4 Log: Altered README.Zeus to give instructions on building FastCGI. Changed --with-zeus configure option into --with-isapi, since its more

[PHP-CVS] cvs: php4 /sapi/fastcgi fastcgi.c

2001-03-22 Thread Ben Mansell
joostersThu Mar 22 10:48:51 2001 EDT Modified files: /php4/sapi/fastcgi fastcgi.c Log: Fix a bug with POST requests. If the Content-Type header wasn't present, we were setting SG(request_info).content_type to NULL, instead of an empty string. This

[PHP-CVS] cvs: php4 /sapi/cgi cgi_main.c

2001-03-22 Thread Ben Mansell
joostersThu Mar 22 10:54:51 2001 EDT Modified files: /php4/sapi/cgi cgi_main.c Log: Fix a bug with POST requests. If the Content-Type header wasn't present, we were setting SG(request_info).content_type to NULL, instead of an empty string. This

Re: [PHP-CVS] cvs: php4 /sapi/fastcgi fastcgi.c

2001-03-23 Thread Ben Mansell
On Thu, 22 Mar 2001, Derick Rethans wrote: On Thu, 22 Mar 2001, Ben Mansell wrote: joostersThu Mar 22 10:48:51 2001 EDT Modified files: /php4/sapi/fastcgi fastcgi.c Log: Fix a bug with POST requests. If the Content-Type header wasn't present, we were

Re: [PHP-CVS] cvs: php4 /sapi/fastcgi fastcgi.c

2001-03-23 Thread Ben Mansell
On Fri, 23 Mar 2001, Zeev Suraski wrote: If it crashes PHP though, it may give remote users a way to attack (even though I can't really think of one in this case) No crash, but the POST data gets silently ignored. -- Ben Mansell, [EMAIL PROTECTED] Zeus Technology Ltd

[PHP-CVS] cvs: php4 /sapi/fastcgi fastcgi.c

2001-03-27 Thread Ben Mansell
joostersTue Mar 27 07:16:34 2001 EDT Modified files: /php4/sapi/fastcgi fastcgi.c Log: Changed header handling; before, we were somehow losing Content-Type: text/html Index: php4/sapi/fastcgi/fastcgi.c diff -u php4/sapi/fastcgi/fastcgi.c:1.2

[PHP-CVS] cvs: php4(PHP_4_0_5) /sapi/fastcgi fastcgi.c

2001-03-27 Thread Ben Mansell
joostersTue Mar 27 08:29:45 2001 EDT Modified files: (Branch: PHP_4_0_5) /php4/sapi/fastcgi fastcgi.c Log: Changed header handling; before, we were somehow losing Content-Type: text/html Index: php4/sapi/fastcgi/fastcgi.c diff -u

[PHP] Config Problems

2001-12-21 Thread Ben Ocean
Hi; I'm installing php from source and I've run into these config errors: configure: error: Cannot find OpenSSL's evp.h /usr/local/bin/config_php: --with-kerberos=/usr/krb5-1.2.2: No such file or directory /usr/local/bin/config_php: --with-ldap=/usr/local/openldap-2.0.18: No such file or

Re: [PHP] Config Problems

2001-12-22 Thread Ben Ocean
/ \ --with-mysql=/usr/local/mysql exit 0 At 12:07 AM 12/22/01 -0500, you wrote: * Ben Ocean ([EMAIL PROTECTED]) [Dec 22. 2001 00:01]: Hi; Howdy. I'm installing php from source and I've run into these config errors: [...] Here's my config script: #!/bin/sh cd /usr/local/php ./configure

Re: [PHP] Config Problems

2001-12-22 Thread Ben Ocean
Well, that got me headed in the right direction. I ended up combining all the commands on one line and removing the references to openssl (I'll mess with that later) and it worked. I have no_idea why... Thanks, BenO At 09:03 AM 12/22/01 -0500, you wrote: * Ben Ocean ([EMAIL PROTECTED]) [Dec 22

Re: [PHP] Config Problems

2001-12-22 Thread Ben Ocean
At 12:24 PM 12/22/01 -0500, you wrote: * Ben Ocean ([EMAIL PROTECTED]) [Dec 22. 2001 11:54]: Well, that got me headed in the right direction. I ended up combining all the commands on one line and removing the references to openssl (I'll mess with that later) and it worked. I have no_idea

[PHP] Why Can't I Get PHP to Work with MySQL??

2001-12-23 Thread Ben Ocean
Hi; I get this error when I try to restart Apache: Syntax error on line 236 of /etc/httpd/conf/httpd.conf: Cannot load /etc/httpd/libexec/libphp4.so into server: /etc/httpd/libexec/libphp4.so The above file does, of course, exist. I'm running RH71 i386 with MySQL and PHP installed from source

Re: [PHP] Why Can't I Get PHP to Work with MySQL??

2001-12-23 Thread Ben Ocean
At 02:32 PM 12/23/01 -0600, you wrote: At 12:16 PM 12/23/2001 -0800, Ben Ocean wrote: Hi; I get this error when I try to restart Apache: Syntax error on line 236 of /etc/httpd/conf/httpd.conf: Cannot load /etc/httpd/libexec/libphp4.so into server: /etc/httpd/libexec/libphp4.so The above file

[PHP] Problem Configuring With MySQL

2001-12-24 Thread Ben Ocean
Hi, Now that I've successfully built PHP (thanks to Brian Clark) I can no longer access mysql! I get the following: #mysql ERROR 1045: Access denied for user: 'root@localhost' (Using password: NO) This has got to have something to do with the way I built PHP. How do I begin trouble-shooting

[PHP] Mailling Lists

2001-12-26 Thread Ben Clumeck
I am creating a mail list and need something that does not require MySQL or any other databases is there a good one? What is the best one even if it's with MySQL? Thanks, Ben -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands

[PHP] Temp File missing Win2k

2001-12-28 Thread Ben Edwards
I am ruining PHP with IIS on Win2k. I am using a PHP app which was working fine but when the app douse a file/upload/submit in the page posted to the temporary file seems not to exist. This was working fine on my Win98 setup. Any idea what is wrong? Ben -- PHP General Mailing List (http

[PHP] Windows 2000 Browse/upload problem

2001-12-29 Thread Ben Edwards
is where the session data is held). Any idea what is wrong. Regards, Ben ** * Ben Edwards+44 (0)7970 269 522 * * Homepagehttp://www.gifford.co.uk/~bedwards * * i-Contact Progressive Videohttp

Re: [PHP] protecting your php code from other peeping toms?

2001-12-29 Thread Ben Edwards
On this front douse anyone know of any companies who will compile an app as I cant afford the compiler but will need to do this in the future. Is it a stand alone and is it easy to install? Ben At 14:10 15/10/2001, ~~~i LeoNid ~~ wrote: On Sat, 13 Oct 2001 16:14:39 -0400 impersonator

[PHP] XML Parsing Problem

2001-12-31 Thread Ben Gollmer
don't get an error code or error string from xml_parse(). Anyone have any ideas? This is a subtle bug - in fact I had been satisfied with my XML parsing code, and was well into the rest of my application when I happened to notice this. Ben -- PHP General Mailing List (http://www.php.net

Re: [PHP] XML Parsing Problem

2002-01-02 Thread Ben Gollmer
Ok, I can understand the predefined entity replacement. But why does it break the string up into 3 parts? I think it should just return Follow-up To Critique of BeOS amp; Mac OS X. Ben On Wednesday, January 2, 2002, at 02:05 PM, Matthew Clark wrote: Hi there, This is not a bug

Re: [PHP] XML Parsing Problem

2002-01-03 Thread Ben Gollmer
the previous tag to the current tag. If they are the same, the data gets stuffed into a buffer; if they are different, the buffer is returned, cleared, and the new data stuffed into it...and $previousTag is set to the current tag. Ben On Wednesday, January 2, 2002, at 06:41 PM, Matthew Clark

[PHP] Maybe OT but I was wondering....

2002-01-08 Thread Ben Turner
404 pages done in php. So I was thinking, if anyone knows some information on this topic, might you have a url or maybe a book title that I could check out to research this a bit further? thanks for your help Ben -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL

[PHP] Newbie - PHP MySQL

2002-01-10 Thread Ben Clumeck
in a table can how would it know to only let a specific user(s) have access to the information? Any help you can give me would be greatly appreciated. Thanks, Ben -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

[PHP] system () exec() problem

2002-01-13 Thread Ben Franske
that accomplish this are included below. Thanks for your help! --Ben The PERL code (for adding) is below: sub createNewList { if ($_[2] eq ) { error($text{erArgs}); } $listName = $_[0]; $adminEmail = $_[1]; $listPassword = $_[2]; #this command is a cludge, if they change the output it may

[PHP] Authentication Question

2002-01-13 Thread Ben Clumeck
account? I am looking to create a system similar to online banking. I appreciate your help. Thanks, Ben -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL

[PHP] Padding with mcrypt_generic

2002-01-14 Thread Ben Sinclair
);, but it doesn't seem to work right (^@ is a single character, not just ^ . @). Has anyone had to do this before and found a solution? -- Ben Sinclair [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: [PHP] Padding with mcrypt_generic

2002-01-15 Thread Ben Sinclair
That would work for me, but I have to deal with many files that I have already encrypted and no longer know the correct sizes of. My search and replace for the padding characters doesn't work because the files sometimes contain those padding characters. -- Ben Sinclair [EMAIL PROTECTED

Re: [PHP] PHP Errors?

2002-01-15 Thread Ben Sinclair
be in there. -- Ben Sinclair [EMAIL PROTECTED] - Original Message - From: Devin Atencio [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, January 15, 2002 11:14 AM Subject: [PHP] PHP Errors? Dear PHP Group, I noticed that recently when one of my PHP scripts has a problem

Re: [PHP] quit me off the php list

2002-01-15 Thread Ben Turner
/Quit Thyago Consort :D Hey I tried! - Original Message - From: Thyago Consort [EMAIL PROTECTED] To: Adam Baratz [EMAIL PROTECTED]; PHP List [EMAIL PROTECTED] Sent: Tuesday, January 15, 2002 12:00 PM Subject: [PHP] quit me off the php list -Original Message- From: Adam

Re: [PHP] Redirect?

2002-01-16 Thread Ben Sinclair
header(Location: http://www.blah.com;); Just be sure that output hasn't already started before you send the header. -- Ben Sinclair [EMAIL PROTECTED] - Original Message - From: Henrik Johansson [EMAIL PROTECTED] To: PHP [EMAIL PROTECTED] Sent: Wednesday, January 16, 2002 10:01 AM

[PHP] Mail() Timeout

2002-01-16 Thread Ben Sinclair
Is there a way to shorten the timeout for the mail() function? Currently it will wait too long when it is unable to send mail, causing the browser to appear to hang. -- Ben Sinclair [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED

Re: [PHP] Mail() Timeout

2002-01-16 Thread Ben Sinclair
I changed my sendmail line to: sendmail_path = /usr/sbin/sendmail -t -i -O DeliveryMode=q That should place it in the queue instead of trying to send it immediately, right? It doesn't seem to work though... It still just sits there when it can't send the mail. -- Ben Sinclair [EMAIL PROTECTED

Re: [PHP] Mail() Timeout

2002-01-16 Thread Ben Sinclair
I just noticed from phpinfo() that sendmail_path reads: /usr/sbin/sendmail -t -i -O DeliveryMode Did it really drop the =a or is it just a problem with phpinfo()? -- Ben Sinclair [EMAIL PROTECTED] - Original Message - From: Ben Sinclair [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent

Re: [PHP] Mail() Timeout

2002-01-16 Thread Ben Sinclair
Placing it in quotes made it show up correctly in phpinfo(), however it still sits there if the email address is bad. For example, a domain that doesn't resolve. -- Ben Sinclair [EMAIL PROTECTED] - Original Message - From: Ben Sinclair [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent

Re: [PHP] Passing PHP Variables

2002-01-17 Thread Ben Sinclair
Either use sessions or pass it via POST in using a form. -- Ben Sinclair [EMAIL PROTECTED] - Original Message - From: John (News) [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, January 17, 2002 4:48 PM Subject: [PHP] Passing PHP Variables I need to pass a variable e.g. $var1

Re: [PHP] function arguments

2002-01-18 Thread Ben Sinclair
You can do something like this: function myFunction($a = hello, $b = world) { } Both arguments are optional and have default values. This is in the documentation. -- Ben Sinclair [EMAIL PROTECTED] - Original Message - From: Malte Fucks [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent

[PHP] Re: PHP 4 on OSX 10.1.2

2002-01-18 Thread Ben Richardson
the languagecode to it always returns Friday Why? I don't know, but I thought that I'd quickly try it out on my machine, and I found the same problem. Cheers, Ben -- ~~ Ben Richardson [EMAIL PROTECTED] Any attempt to brew coffee

Re: [PHP] That one doesn't work!

2002-01-23 Thread Ben Sinclair
So you want to know how to justify text? This is not a PHP question. HTML documentation: http://www.idocs.com/tags/ -- Ben Sinclair [EMAIL PROTECTED] - Original Message - From: Scott Fletcher [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, January 23, 2002 4:11 PM Subject

Re: [PHP] What do you mean?

2002-01-23 Thread Ben Sinclair
Yes, there is a function that cleans up carriage returns and line feeds by changing them to BR's. There is no function to magically justifty text. Find some HTML documentation and output the HTML to justify your text. -- Ben Sinclair [EMAIL PROTECTED] - Original Message - From: Scott

Re: [PHP] Warning: Failed opening '....' for inclusion (.....) in Unknown on line 0

2002-01-24 Thread Ben Sinclair
Maybe there was a permissions problem? -- Ben Sinclair [EMAIL PROTECTED] - Original Message - From: Scott Fletcher [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, January 24, 2002 9:34 AM Subject: [PHP] Warning: Failed opening '' for inclusion (.) in Unknown on line 0

Re: [PHP] getting a LAMP job in this economy

2002-01-24 Thread Ben Sinclair
You could switch to Java. At least with Java you will learn something that doesn't depend on Windows, but is still needed by Windows users. Not that there is a huge market for Java developers right now either... -- Ben Sinclair [EMAIL PROTECTED] - Original Message - From: Vincent

Re: [PHP] Re: getting a LAMP job in this economy

2002-01-24 Thread Ben Turner
for LAMP is coming. Heck, it may actually be the thing that can pull the IT industry out of the slump if adopted by more companies. Dollars can better be spent paying bright individuals like all of us to be more creative with less overhead. Just my 2 cents anyways :P Ben - Original Message

[PHP] Got a problem I cant figure out

2002-01-27 Thread Ben Turner
Parse error: parse error in /var/www/docs/tacklebox/404handler.php on line 47 I am receiving this error on my page but the problem is that line 47 is the ? and last line of the page. Is their something Im missing here?? Thanks, Ben

[PHP] MySQL Newbie

2002-01-28 Thread Ben Clumeck
How do I use MySQL through the web. I currently have MySQL running on my personal PC on WinXP. I use a command prompt to add tables, add records, and so forth. How do I create tables and records when my database is on the web? Thanks, Ben -- PHP General Mailing List (http://www.php.net

[PHP] Sending an e-mail to 1,000 people

2002-01-29 Thread Ben Clumeck
I would like to send an e-mail (the same e-mail) to 1,000 different people. I want each persons name to be in the To: field. Is there a way to customize it to where it can say Dear (having a different persons name corresponding to an e-mail address) so that it looks customized. Thanks, Ben

[PHP] Installing Apache on WinXP

2002-01-29 Thread Ben Clumeck
Does anyone know of any conflicts or problems? I am installing it and went to the conf file and changed the setting to localhost. But it says that there is an Error 1067. Any help would be greatly appreciated. Thanks, Ben -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e

[PHP] Redirect problem.... UGH!!

2002-01-30 Thread Ben Turner
put it on IIS5 (the clients server) I receive The specified CGI application misbehaved by not returning a complete set of HTTP headers. I am guessing this is a bu with PHP and IIS but does anyone know how to circumvent it? Thanks! Ben -- PHP General Mailing List (http://www.php.net

[PHP] PHP4.0 Apache with WinXP

2002-01-30 Thread Ben Clumeck
I am trying to install Apache and PHP4.0 on WinXP. Does anyone know of any conflicts? Thanks, Ben -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL

[PHP] Large File Uploads

2002-02-04 Thread Ben Sinclair
suggestions? I need for my users to have the ability to upload large files over a SSL connection using common browsers. I can't make them run applets or use an insecure method for doing these transfers. -- Ben Sinclair [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe

[PHP] Re: Newbie: Question about filesize()

2002-02-06 Thread Ben Crawford
You also seem to have an extra equals. Your loop should read: while (false != ($file=readdir($handle))){ It should come up as an error, but I'm not sure. Ben Manuel Ritsch wrote: Hello There I'm new to PHP and trying to code a function that reads all teh files out of a directory

[PHP] File Uploads

2002-02-06 Thread Ben Crawford
and I haven't been able to figure it out. Is there some sort of login that I should be doing. I have tried the basic login just to check if that will work but it doesn't. Ben -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Create Mysql Records From a Comma separated Values String

2002-02-06 Thread Ben Crawford
will have an array $toppings with entries for each of the toppings. Hope this helps. Ben Simos Varelakis wrote: Hi to everyone i have the following problem i have a string $foo which contains (n variable) comma separated values (example 1,17,23,45) and i want to insert these values

[PHP] Differences between PHP, ASP, JSP

2002-02-06 Thread Ben Clumeck
banks use PHP? Is there security issues? Thanks, Ben -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] MySQL Install Problem

2002-02-06 Thread Ben Clumeck
help? Please. Thanks, Ben -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] MySQL Install Problem

2002-02-07 Thread Ben Clumeck
Dave, I tried it and got the following message: Microsoft(R) Windows DOS (C)Copyright Microsoft Corp 1990-2001. C:\DOCUME~1\BENcd c:\mysql\bin C:\MYSQL\BINmysqld --standalone 'MYSQLD' is not recognized as an internal or external command, operable program or batch file. Any suggestions? Ben

[PHP] Math librarys

2002-02-07 Thread Ben Edwards
Getting error 'Call to undefined function: bcmod() ' cos ISP I am using douse not have maths support enabled. Has anyone got a PHP function that will do mod function so I can use this instead. Ben * Ben Edwards

[PHP] got some advice.... need to know the lingo

2002-02-10 Thread Ben Turner
cant even find the correct keywords to use to search for anything like this. Anyone got some advice on what to search by or maybe a link to get some more information?? Thanks! Ben -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: got some advice.... need to know the lingo

2002-02-10 Thread Ben Turner
Well not so much processing XML but rather grabbing HTML input and parsing it for certain values. I use this approach very heavily for inputing a DB table with information that needs to be displayed back to the web users. Ben - Original Message - From: Michael Kimsal [EMAIL PROTECTED

[PHP] Webhosts

2002-02-13 Thread Ben Clumeck
I have found 2 webhosts that provide PHP and MySQL: www.aletiahosting.com www.rackspace.net Does anybody have experience with either one (good or bad)? Or does anyone use a good low price host? Thanks, Ben -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

[PHP] Empty form

2002-02-15 Thread Ben Clumeck
); } ? Thanks, Ben -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Moto

2002-02-19 Thread Ben Curtis
I noticed this server-side scripting language which has an interesting twist: your code can be complied and loaded as an apache DSO. Would this be feasible with PHP? -- This space for rent -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: Moto

2002-02-19 Thread Ben Curtis
Not PHP itself, heh, but PHP scripts that you write. Moto scripts can be interpreted by moto, just like PHP, but the scripts can also be compiled as DSOs. On Tue, Feb 19, 2002 at 11:58:52AM -0500, Gary wrote: Ben Curtis wrote: I noticed this server-side scripting language which has

Re: [PHP] Re: Moto

2002-02-19 Thread Ben Curtis
http://www.webcodex.com/moto/ On Tue, Feb 19, 2002 at 05:07:14PM +, Nick Winfield wrote: On Tue, 19 Feb 2002, Ben Curtis wrote: Not PHP itself, heh, but PHP scripts that you write. Moto scripts can be interpreted by moto, just like PHP, but the scripts can also be compiled as DSOs

Re: [PHP] What is the different between Apache and IIS?

2002-02-19 Thread Ben Turner
a word) that the recent virus and exploit outbreaks in MS have required. My 2 cents Ben - Original Message - From: Nick Wilson [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, February 20, 2002 12:26 AM Subject: Re: [PHP] What is the different between Apache and IIS

Re: [PHP] What is the different between Apache and IIS?

2002-02-19 Thread Ben Turner
Not mention budget friendly-ness - Original Message - From: Nick Wilson [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, February 20, 2002 12:26 AM Subject: Re: [PHP] What is the different between Apache and IIS? -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 * and

[PHP] Retaining data across multiple sites

2002-02-20 Thread Ben Sinclair
I want to retain some data across my sites, which have different domain names. I can't use cookies because they rely on the domain name, and I'd rather not pass the information on every link Any suggestions? -- Ben Sinclair -- PHP General Mailing List (http://www.php.net/) To unsubscribe

Re: [PHP] Retaining data across multiple sites

2002-02-20 Thread Ben Sinclair
I could do that, but how would I keep track of the users? I don't think IP addresses are reliable. I would also prefer to limit my database access. -- Ben Sinclair - Original Message - From: Chris Boget [EMAIL PROTECTED] To: Ben Sinclair [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent

Re: [PHP] Retaining data across multiple sites

2002-02-20 Thread Ben Sinclair
These are all workable solutions, but I also have to worry about https sites. If I link to hidden images on non-secure servers, the browser will display a warning. I'm also trying to avoid buying multiple certificates when all I want to do is brand a site. -- Ben Sinclair - Original Message

[PHP] E-mail Spyder Software

2002-02-21 Thread Ben Clumeck
I know this is not a PHP question but would really appreciate comments regarding experiences with the software E-mail Spyder or any other experiences with other software. Thanks, Ben -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Newbie question...

2002-02-22 Thread Ben Turner
. Thanks! Ben -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] changing the http status from file not found to....

2002-02-26 Thread Ben Turner
into thinking that it is an actual page?? Or maybe its an Apache setting to fiddle with you think?? Any help would be appreciated Thanks! Ben

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