[PHP] 'make test' failures

2011-01-14 Thread Jesse Williams
I am attempting to compile php from source, because a couple of our developers require a new version than what is packaged with our linux distribution (Oracle Enterprise Linux 5.3). The code configures just fine and builds, but when I run the 'make test' command it fails with something like thi

RE: [PHP] Rapid application development

2006-10-03 Thread Jesse Castro
es. Cons are database overhead and difficulty in modifying objects once you have records in the database. Still if you plan well, it makes things go a LOT quicker, and gets rid of DB management and CRUD queries as you're looking for. Regards, Jesse R. Castro -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: problem with large arrays in php 4.3.2

2006-01-22 Thread Jesse Guardiani
Jesse Guardiani wingnet.net> writes: > > Hello, > > I have an old version of php (4.3.2) that is acting rather strangely. I'm > searching two large arrays (approx 22,000 records in each) using > array_diff_key() from the PEAR PHP_Compat library: >

Re: [PHP] problem with large arrays in php 4.3.2

2006-01-10 Thread Jesse Guardiani
erence large sets of data? Regards, Rodolfo Andrade - Original Message - From: Jesse Guardiani To: php-general@lists.php.net Sent: Tuesday, January 10, 2006 5:07 PM Subject: [PHP] problem with large arrays in php 4.3.2 Hello, I have an old version of php (4.3.2) that is acting r

[PHP] problem with large arrays in php 4.3.2

2006-01-10 Thread Jesse Guardiani
} And I'm getting aweful performance. I know it's a ton of records (22,000 * 22,000), but it shouldn't take 16 minutes on a P4 Xeon 2.4ghz! Has anyone seen this before? Is this a bug? Or are my math skills lacking and this is perfectly normal performance for the size of the dat

[PHP] Re: SSL & normal sessions stored differently?

2005-11-03 Thread Jesse Guardiani
Jesse Guardiani wingnet.net> writes: > > James Benson jamesbenson.co.uk> writes: > > > > > Could it be you have two differnt domain names, PHP could be using a > > different cookie/session for each one. > > Yeah, but I'm setting the session_id

[PHP] Re: SSL & normal sessions stored differently?

2005-11-03 Thread Jesse Guardiani
d with that session id. Wouldn't force feeding PHP the session id override any domain problems anyway? I think the problem is that I have session.auto_start turned on. I can't turn it off for fear of breaking a production site. Is there any way to feed PHP a session id with auto_star

[PHP] SSL & normal sessions stored differently?

2005-11-03 Thread Jesse Guardiani
places, even though the save_path is identical. Does anyone know why this happens and/or how to work around it? Thanks! Jesse Guardiani [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] help with adding

2005-02-25 Thread Jesse Castro
> > > > The question is, how would I take add each of these numbers (10+5+25)? > > > > Any help is appreciated. > > > > $total = 0; for ($i = 1; $i <= $sendnum; $i++) { $qty = $_POST['qty'.$i]; ech

RE: [PHP] Convert a string to ASCII

2005-02-11 Thread Jesse Castro
of a string, obvious).j/k > > Do you mean the ascii values for a string? Yes it is > possible, it only requires that you use one of the regex or > replace functions > > Hi, > > Thanks for your reply, yes for each character in the string I need to > replace it with i

RE: [PHP] Favorite Linux Distribution

2005-02-08 Thread Jesse Castro
stributions I have tried. Plus it has a totally smooth logo (how can you beat a penguin with a pipe?) Check it out at http://www.slackware.org I would stay away from the Fedora Core territory as they seem to be headed into the auto-magic windows-esque area. Jesse R. Castro Happy Mardi Gras -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] On large application organization [long and possibly boring]

2005-01-07 Thread Jesse Castro
ers to this question, but I couldn't find a shred of evidence in the documentation. Did you do similar tests, hear from gurus, or something of like? Or did I just miss it somewhere? Regards, Jesse R. Castro -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] On large application organization [long and possibly boring]

2005-01-07 Thread Jesse Castro
this question, but I couldn't find a shred of evidence in the documentation. Did you do similar tests, hear from gurus, or something of like? Or did I just miss it somewhere? Regards, Jesse R. Castro -- 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 Jesse Castro
zdnet.com/2100-1009_22-5499725.html regards, Jesse -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Text Parser

2004-11-24 Thread Jesse Castro
[snip] I need to get a procedure able to do this: 1) Receive a string. For example: "name age address location". 2) Process that string, inserting "comas" between the words in the middle. For example: "name,age,address,location". It´s important that the comas must be inserted after the first wor

RE: [PHP] file upload

2004-10-26 Thread Jesse Castro
; >> Again, thanx for the help and any insights would be greatly >> appreciated. :) >> > Victor, I have recently come across the same problem. Microsoft supplied a very nice method to submit xml files in asp. Unfortunately, it is harder to implement in PHP. The script below i

RE: [PHP] include()ing into a variable

2004-10-14 Thread Jesse Castro
fread($fp, filesize($file)); fclose($fp); See the following page for reference: http://us2.php.net/manual/en/function.fopen.php Cheers, -jesse- -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] alphabetic comparison

2004-09-30 Thread Jesse Castro
[snip] Is there any way you can use the numerical comparisons < or > to see if one word comes first alphabetically to another ? what can I use to see if "oranges" comes after or before "apples" alphabetically for instance. [/snip] **mumble grumble** You should just try dinky questions like this o

RE: [PHP] deleting directories

2004-09-21 Thread Jesse Castro
rm -r will recursively remove the directory and everything in it -Original Message- From: Afan Pasalic [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 21, 2004 12:31 PM To: php-general Subject: [PHP] deleting directories I have directory with huge number of directories (names by dat

RE: [PHP] External Files (take 2)

2004-09-20 Thread Jesse Castro
[snip] So i would not need to use correct... Also as to the other question I asked: WHat should I use in the other file? the complete connection code or just the values as variables? [/snip] Something like this: Main file: includeFile.php Cheers, -jesse- -- PHP General Mailing List

RE: [PHP] Barcodes ?

2004-09-10 Thread Jesse Castro
[snip] Hi List, Anyone have any pointers to examples of Code 39 barcode generation using php please. Thanks for any help Dave Carrera [/snip] STFW http://www.aditus.nu/jpgraph/jpg_barcodes.php -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.ph

[PHP] ftp_ssl_connect()

2004-08-24 Thread Jesse Castro
Does ftp_ssl_connect() support Explicit SSL, Implicit SSL, or both? Thanks, -jess-

[PHP] Re:[PHP] Open all subdirectories in a directory

2004-08-16 Thread Jesse Castro
[snip] Can anybody help me to open all subdirectories in a directory, I used is_dir() to check whether it is a dir, and if yes, I recursively called it with the new dir name. But all subdirectories are not open the recursion is not working for more than 1 level. I tested it in windows server. Exp

Re: [PHP] TrueType + GD (ImageTTFBox)

2003-02-20 Thread Jesse Guardiani
/usr/local/include/freetype2/freetype/ This is for PHP 4.3.1 with built-in GD with TrueType ( ttf ) running on FreeBSD 4.7-RELEASE. Typo3 now works great! Woo. Jesse On Wednesday 19 February 2003 15:45, Jesse Guardiani wrote: > Howdy list, > > I'm trying to install a PHP CMS packag

[PHP] TrueType + GD (ImageTTFBox)

2003-02-19 Thread Jesse Guardiani
() in /usr/home/typo3test/public_html/typo3/t3lib/class.t3lib_stdgraphic.php on line 604 It seems that PHP doesn't see imagettfbox(). I know it's in the GD code because I grep'ed for it. Does anyone know what I'm doing wrong? Thanks!! -- Jesse Guardiani, Systems Admin

Re: [PHP] Re: str_replace an include

2003-01-21 Thread jesse
ns (HiTCHO) Open Source Consulting e-mail: [EMAIL PROTECTED] -Original Message----- From: jesse [mailto:[EMAIL PROTECTED]] Sent: Wednesday, 22 January 2003 2:12 AM To: [EMAIL PROTECTED] Subject: Re: [PHP] Re: str_replace an include Timothy Hitchens ) wrote: Where are you getting $read fr

Re: [PHP] Re: str_replace an include

2003-01-21 Thread jesse
ssage;) Timothy Hitchens (HiTCHO) Open Source Consulting e-mail: [EMAIL PROTECTED] -Original Message- From: jesse [mailto:[EMAIL PROTECTED]] Sent: Wednesday, 22 January 2003 1:38 AM To: [EMAIL PROTECTED] Subject: [PHP] Re: str_replace an include Thanks a lot, I think that

[PHP] Re: str_replace an include

2003-01-21 Thread jesse
Thanks a lot, I think that will be the trick, but I'm still having a bit of a problem. Here's my scenario: class mainReplace{ function feedLinks(){ ob_start(); include('links.php'); $file = ob_get_contents(); ob_end_clean(); return $file; } } $replace = new

[PHP] str_replace an include

2003-01-21 Thread jesse
Hello all, I'm trying to replace a tag with an include in a template scenario. For example: str_replace("

RE: [PHP] portabily including files

2003-01-14 Thread Jesse Cablek
Tyler BIRD scribbled; > I'm trying to include > 'http://www.myserver.com/conted/me.inc'; > portably on several mirrored servers like include > '/conted/me.inc' > , I was wondering if there was someway I could include > files and have the implicity connect > and down the

RE: [PHP] include_files message question

2003-01-14 Thread Jesse Cablek
gt; *** Error Ends *** > You don't seem to have "." in your include_path, add it in your php.ini: include_path = "/usr/local/lib/php:." -jesse -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Does PHP's imap_utf7_en/decode compatible with Microsoft Outlook Express?

2003-01-13 Thread Jesse Cablek
because of a Garman character in the persons name in his address book. Try creating an english IMAP folder and see if OE can read that? -jesse -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] version confusion - please help

2003-01-11 Thread Jesse Cablek
any assumptions, best give more information about the setup. -jesse -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Mysql update problems

2003-01-05 Thread jesse
che='$blog', title='$title' where url='$address'"; print $query; I'm thinking that your single quotes preventd $blog, $title, $address form being expanded. - Original Message - From: "Jesse Lawrence" <[EMAIL PROTECTED]> To: <[EM

[PHP] Mysql update problems

2003-01-05 Thread Jesse Lawrence
ct to database"); $query = "update bloggers set cache='$blog', title='$title' where url='$address'"; if(mysql_db_query ($dbname, $query, $link)) { $is_news = 1; }else{ $is_news = 0; } return $is_news; } T

RE: [PHP] HELP: Carriage returns don't display in HTML

2002-09-27 Thread Jesse Cablek
Shane <mailto:[EMAIL PROTECTED]> scribbled; > > There is a JavaScript function that will convert carriage > return to tags, but is there a PHP function that will > add or tags to a text form field in place of the > carriage returns a user might add. > nl2br()

RE: [PHP] Re: 4.0.2 => 4.2.3, form vars are empty?

2002-09-27 Thread Jesse Cablek
alues. > > Turn register_globals = On in the php.ini file... > > HTH > Erwin Or better yet, actually use the new $_GET[] and $_POST[] and leave that option off. -jesse -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] REMOTE ADDR

2002-09-26 Thread Jesse Cablek
Anderson O Muniz <mailto:[EMAIL PROTECTED]> scribbled; > > > > > > > > Is that PHP code, or SSI? -jesse -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] html input and php (newbie)

2002-09-24 Thread Jesse Cablek
submit == "click"){ > echo "Hello, $UserName"; > } [...] > Assuming register_globals=off, use $_POST['UserName'] instead -jesse -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] getting ip address of the user.

2002-09-24 Thread Jesse Cablek
Anil Garg <mailto:[EMAIL PROTECTED]> scribbled; > > Can i get the ip-address of the machines who accessed my website?? > Plz give the pointer that on what lines shall i start for doing so. > print $_SERVER['REMOTE_ADDR']; -jesse -- PHP General Mailing L

RE: [PHP] Crypt() =or= md5()

2002-09-24 Thread Jesse Cablek
Anthony Ritter scribbled; > > I get the following line when trying to use the crypt() function in > php .. > > Fatal error: Call to undefined function: crypt() in c:\program > files\apache group\apache\htdocs\handleform1.php on line

RE: [PHP] error compiling apache2 on cobalt libgdbm error

2002-09-24 Thread Jesse Cablek
uld be the problem It looks like a gdb issue. It also looks like an Apache issue, and I don't remember subscribing to the Apache list. Maybe you'll want to go to http://httpd.apache.org or do a simple web search? -jesse -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Dynamic HTML Email

2002-09-20 Thread Jesse Cablek
ext. I believe > this is happening because the email needs an additional header > stating the email needs to be parsed as html not plain text (or both). > You can try sending Content-Type: text/html\r\n to see if that helps, otehrwise the mail client may be set for text-only. -jesse

RE: [PHP] Why isn't there much info on apache2?

2002-09-20 Thread Jesse Cablek
Danny Shepherd <mailto:[EMAIL PROTECTED]> scribbled; > > Mod_ssl is part of the standard Apache2 distro now. > Ah, then it IS hidden ;) -jesse -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Why isn't there much info on apache2?

2002-09-20 Thread Jesse Cablek
ell, unless they hide the 2.x compatible version. Plus mod_perl as far as I know has completely changed, so if you have old mod_perl scripts they gotta convert. Start here: http://perl.apache.org/docs/2.0/user/overview/overview.html -jesse -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] adding unix account via system command

2002-09-20 Thread Jesse Cablek
;> shell that doesn't or use a C-wraper. >> Make yourfile.c and put this in: main(argc,argv) int argc; char **argv; { execv("/your/program/here", argv); } then cc -o yourfile yourfile.c chown root.root yourfile chmod 4755 yourfile this will make it rwsr-xr-x -jesse

RE: [PHP] Re: Search system

2002-09-20 Thread Jesse Cablek
[EMAIL PROTECTED] scribbled; > > I found it at http://www.php.net/urlhowto.php > > Thanks anyway. > Crap I just sent this to the list, I need a better email client that sorts by thread and not just subject :/ -- PHP General Mailing List (http://www.php.net/) To un

RE: [PHP] Search system

2002-09-20 Thread Jesse Cablek
[EMAIL PROTECTED] scribbled; > > Hi, > > Can someone point me to the documentation to make the same search > system as php.net like www.php.net/lala that will search on the > manual. > http://www.php.net/urlhowto.php -- PHP General Mailing List (http://www.p

[PHP] why isn't this working?

2002-09-20 Thread Jesse Lawrence
This little code snippet is from a login system that I've made, which takes unconfirmed user-info out of a mysql table, and places it into a confirmed table (Uses email confirmation). Now, this has really got me baffled, because it seemed to be working fine yesterday. Can anyone please tell me w

[PHP] why isn

2002-09-20 Thread Jesse Lawrence
__ Post your free ad now! http://personals.yahoo.ca -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Strange submission problem

2002-09-18 Thread Jesse Lawrence
Hmmm, that was the solution. That's kind of a strange little thing isn't it? Thanks a lot for your help, Jesse I've had this same problem. It seems that the value of submit is only sent if the button is clicked (netscape and internet explorer). Could it be that you

[PHP] Strange submission problem

2002-09-18 Thread Jesse Lawrence
ut you: Password: Confirm Password: Your help is greatly appreciated, Jesse Lawrence __ Post your free ad now! http://personals.yahoo.ca -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit

[PHP] Re: PHP EXEC();

2002-09-12 Thread Jesse Cablek
;d be willing to bet it's a permissions issue as httpd's usually aren't run as root (unless you're crazy ;) -jesse -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: PHP

2002-09-12 Thread Jesse Cablek
s, cat will do the inside of the files. > Also does anyone know how to insert a text on about the 4 or 5 line of a file using >php? I can add text to the end of a file and to the beginning, but I'm not sure how >to do it for specific lines. > Sorry.. -jesse -- PHP Ge

[PHP] Re: PERMISSIONS

2002-09-12 Thread Jesse Cablek
, use a C wrapper that's setuid root. Otherwise, give access to your httpd user to the mentioned directory. -jesse -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Problem updating post on a basic weblog system

2002-09-12 Thread Jesse Lawrence
been updated or changed in any way. Does anyone have any suggestions or help they could lend me? I've been facing this problem for a while now, and can't seem to get my head around it. You can view the entire code here: http://soniceast.d2g.ca/~jalaw/blog/admin.txt Th

[PHP] strange error message when trying to start apache

2002-08-26 Thread Jesse Lawrence
e/bin/apachectl start: httpd could not be started Can anyone lend me a hand with this? Thanks very much, Jesse Lawrence __ Post your ad for free now! http://personals.yahoo.ca -- PHP General Mailing List (http://www.php.net

[PHP] make problems, sapi

2002-08-26 Thread Jesse Lawrence
hp-4.2.2/sapi/apachefilter' make[2]: *** [all-recursive] Error 1 make[2]: Leaving directory `/home/jalaw/downloads/php-4.2.2/sapi/apachefilter' make[1]: *** [all-recursive] Error 1 make[3]: Leaving directory `/home/jalaw/downloads/php-4.2.2/sapi/' make:

[PHP] question about references

2002-08-02 Thread Jesse Vitrone
#x27;s the right way to loop through this array if I really want to change homer's name to marge in this example? The way it is now, I see my echo saying that I'm changing the name, but when I do the second var_dump, it's the same as the first var_dump. Thanks in advance,

[PHP] Create a link where http://

2002-07-29 Thread Jesse Lawrence
f someone could point me towards a solution, it would be greatly appreciated. Thanks very much, Jesse Lawrence http://soniceast.d2g.ca/jesse/ __ Post your ad for free now! http://personals.yahoo.ca -- PHP General Mailing List (htt

[PHP] Image upload into database

2002-07-24 Thread Jesse Lawrence
nally using just a Blob, and have since switched to a Long Blob. Any thoughts or comments on this would be greatly appreciated. Thanks a bunch, Jesse __ Post your ad for free now! http://personals.yahoo.ca -- PHP General Ma

[PHP] Hitting return in a textarea box...

2002-07-24 Thread Jesse Lawrence
I may have done it wrong?) and I also tried nohardbreaks and nosoftbreaks, but I think they may be no longer supported. Is this a case for regex? If so, can someone perhaps point me to an article on how to accomplish this? Thanks very much for any help. Jesse ___

Re: [PHP] Help! Configuring PHP with Personal Web Server

2002-06-04 Thread Jesse Segovia
"Brian Feliciano" <[EMAIL PROTECTED]> writes: >>So far I've found about five different ways to install PHP with PWS and >>none of them work. Can anyone who has done this please send detailed >>instructions about how to do it, or point me to instructions that work? > any error msgs? it'll help a

[PHP] Help! Configuring PHP with Personal Web Server

2002-06-04 Thread Jesse Segovia
So far I've found about five different ways to install PHP with PWS and none of them work. Can anyone who has done this please send detailed instructions about how to do it, or point me to instructions that work? Thanks very much in advance. -- PHP General Mailing List (http://www.php.net/) T

[PHP] Newbie Question - InstallShield PHP Installation with PWS

2002-06-02 Thread Jesse Segovia
Here's a newbie question. I installed the Windows CGI InstallShield version of PHP to use with the MS Personal Web Server I already have working perfectly on my system. On restarting my PC and trying a very simple php script, I get the error at the bottom of this email. Unfortunately there isn'

[PHP] Deleted Files

2002-03-27 Thread Jesse Warden
It seems that in using the PHP delete file function, I have inadvertently deleted the root folder instead, waxing the majority of my PHP files. Is there a recovery mechanism on Windows or am I getting burned by playing with fire? J ** Scanned for Viruses ** -- PHP General Mailing List (http:

[PHP] File Upload

2002-03-27 Thread Jesse Warden
I am having a problem with a file upload. When I submit the file, I get an error saying "Could not open the file for reading: No such file or directory exists.". However, when looking on the C drive (windows) where I have the file and browsed for it using the Browse button, it certainly is there

[PHP] Filing Structure

2002-03-20 Thread Jesse Warden
I am coming from a Flash, Director, and VB type programming world. Filing structure and code structure in PHP is really new to me. Therefore, does anyone have some an example filing structure I can look at or documentation on how to best structure? I downloaded a free message board (phpBB2) fro

[PHP] Session Data Not Saving

2002-03-19 Thread Jesse Warden
I am getting errors when I try to start a session. I get a "permission denied (13)" for trying to open the session data. I also get "Failed to write session data (files). Please verify that the current setting of session.save_path is correct." I got a few others, but they didn't look to pertine

[PHP] Cookie Woes

2002-03-18 Thread Jesse Warden
I performed a: setCookie($username, $username, time()+3600,"", "", "0"); echo header("Location: projects.php"); ... on a php page that deals with a form submission. However, when I get to projects.php, it claims $username doesn't exist. The book said that to get a variable from a cookie, all I

[PHP] Testing for NULL

2002-03-18 Thread Jesse Warden
Hi, I am new... hope I am using this list correctly. I am trying to test for a null value, and if it is null, then to use a default value instead. The login page that I have, I want to show nothing in the username field unless it is passed a username from another PHP page via the header function

Re: [PHP] $HTTP_REFERER

2001-08-17 Thread Jesse Arnett
Hello, i'm not sure i would worry too much about the referrer.. if your 'add account' script has decent error checking, it shouldn't matter if the user creates their own form. -jesse -- Jesse Arnett [EMAIL PROTECTED] SISCOM Inc http://www.siscom.net/ Southern Ohio's

RE: [PHP] How to prevent people from downloading images

2001-07-04 Thread Jesse S. Williams
can't recall off the top of my head. Jesse Williams Systems Administrator DowNET VoIP Team Electronic Data Systems, Inc. (EDS) -Original Message- From: rodrigo [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 03, 2001 8:37 PM To: php php Subject: [PHP] How to prevent people from dow

RE: [PHP] PHP for NetWare?

2001-07-04 Thread Jesse S. Williams
ed/official) port of PHP to Netware, and frankly I doubt there's much, if any, work being done on such a project. At the rate NW is losing it's customer base, there may be more client's with OS/2 then servers with NW soon. Jesse Williams -Original Message- From: Tony G

Re: [PHP] Pricing Advice Needed

2001-07-01 Thread Jesse S. Williams
;-) Of course, that IS wishful thinking but still!!! Jesse Williams System Administrator DowNET VoIP Team Electronic Data Systems -- 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 PROTECTED]

[PHP] Extra Path Info

2001-03-15 Thread Jesse Kipp
explaining this behavior? Is it the php3 module being activated because of the .php3 extension but then trying to parse a file named "extratext"? thanks, jesse kipp -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-ma

Re: [PHP] Macs and PHP

2001-02-18 Thread Jesse Swensen
Another thing to look for is JavaScript. There have been several sites I have visited (I am also a big Mac user), that use a lot of JavaScript that will break on IE 5 for the Mac. -- Jesse Swensen [EMAIL PROTECTED] > From: Michael Stearne <[EMAIL PROTECTED]> > Date: Sun, 18 Feb 2

Re: [PHP] help with classes

2001-02-13 Thread Jesse Swensen
t;; > > $cls = new foo(); > $cls->mymethod(); > echo $cls->bar; > > echo ""; > ?> This can be simplified by: bar = $foo; } } $foo = "Hello World"; $cls = new Foo($foo); echo $cls->bar; ?> -- Jesse Swensen [EMAIL PROTECTED] --

Re: [PHP] Regex help needed...

2001-02-12 Thread Jesse Swensen
on 2/12/01 4:30 PM, Christian Reiniger at [EMAIL PROTECTED] wrote: > On Monday 12 February 2001 21:08, Jesse Swensen wrote: >>>> This should be a quick one, but I can't seem to wrap my brain around >>>> it. All I need to do is replace leading or trailing spaces

Re: [PHP] Regex help needed...

2001-02-12 Thread Jesse Swensen
on 2/12/01 1:01 PM, Jason Stechschulte at [EMAIL PROTECTED] wrote: > On Mon, Feb 12, 2001 at 12:15:04PM -0500, Jesse Swensen wrote: >> This should be a quick one, but I can't seem to wrap my brain around it. >> All I need to do is replace leading or trailing spaces with under

[PHP] Regex help needed...

2001-02-12 Thread Jesse Swensen
This should be a quick one, but I can't seem to wrap my brain around it. All I need to do is replace leading or trailing spaces with underscores. If there is spaces in between words, leave them alone. Suggestions? -- Jesse Swensen [EMAIL PROTECTED] -- PHP General Mailing List

Re: [PHP] shows up in IE but not Netscape

2001-02-09 Thread Jesse Swensen
Sounds like you may be missing a piece of a table. Make sure all your table, tr, td type tags have a closing tag. IE is more forgiving... -- Jesse Swensen [EMAIL PROTECTED] > From: "Erik Boles" <[EMAIL PROTECTED]> > Organization: rocky Mountain Web Tech > Reply