[PHP] getting IMAP part ID´s

2001-04-04 Thread joel
Hi. Is there a PHP function to get a message part ID through IMAP? I´ve been looking for one but did not find it. Becaues the function imap_fetchbody requires a message part but I can´t figure out how to get its ID. anyone? thanks in adv. Joel.

[PHP] How to make a cookie never expire in PHP?

2001-07-28 Thread Joel
kie not expire at all? If I don't mention any expiration time, the cookie expires as soon as quit the browser. Can I use date instead of time? If yes, then in which format should I specify the date? Thanks, -- Joel Agnel [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/)

[PHP] Re: Free webspace with PHP&Mysql support

2001-07-28 Thread Joel
http://www.portland.co.uk/ They provide free PHP and MySQL although their forums are the only options for quick support -- Joel Agnel. Sign up for our Free Weekly Newsletter that delivers Cool Sites directly to you by e-mail. You'll have Fun! Click Here : http://www.siteskool.com/

[PHP] Is 5.3.5 really that much slower than 5.2?

2011-03-05 Thread Joel
ick to making it behave better, or do I simply have to stick with 5.2 until it's no longer supported? Is anyone else out there in the same boat? Thanks! Joel -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP 5.3.6RC2 Released for Testing

2011-03-10 Thread Joel
http://svn.php.net/viewvc/php/php-src/tags/php_5_3_6RC3/NEWS?revision=309052&view=markup 2011/3/10 sexyprout : > What will be the changes in PHP 5.3.6 final? > > 2011/3/10 Johannes Schlüter > >> The third, and last, release candidates of 5.3.6 was just released for >> testing and can be downloade

Re: [PHP] Failure in bitwise operations moving from 5.2.x to 5.3.x

2011-03-15 Thread Joel
You might want to take a look at the BC Math functions, which can perform operations on arbitrary length numbers. On Tue, Mar 15, 2011 at 12:31 PM, Ford, Mike wrote: >> -Original Message- >> From: Andy McKenzie [mailto:amckenz...@gmail.com] >> Sent: 15 March 2011 15:51 >> >> As it turns o

Re: [PHP] PHP session replication

2011-03-17 Thread Joel
Take a look at MCache: http://www.mohawksoft.org/?q=node/8 A drop in distributed replacement for php sessions. Or you could use memcache to do the same thing. On Thu, Mar 17, 2011 at 12:06 AM, Alessandro Ferrucci wrote: > Hello, > I'm curious, what are the most popular methods to perform sessi

[PHP] Re: PHP Auto-Responder

2002-12-17 Thread Joel Boonstra
heduler, Mac (non-osx) has applescript (I think), and OSX and Linux have, well, everything. Otherwise, you could try an online cron service. Like: http://www.cronservice.com/ I have no idea how reliable they are, etc..., but it's likely cheaper than hosting with a new place. J

[PHP] Re: Defaults in drop down list...

2003-01-07 Thread Joel Boonstra
27;s going on. So it requires more documentation. * you run the risk of stepping on pre-existing variables. However, the upside, namely, eliminating a *ton* of code, is attractive enough to me that I use this for most select boxes I do. Joel -- [ joel boonstra | [EMAIL PROTECTED] ] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Fw: HTTP_REFERER work without a problem....

2003-01-16 Thread Joel Boonstra
e between those clicks, thus making even a temporary id based on the IP address unreliable, and perhaps frustrating if your site keeps 'forgetting' things about the user. Joel -- [ joel boonstra | [EMAIL PROTECTED] ] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: slideshow/flush

2003-02-17 Thread Joel Boonstra
t a maximum of 5 seconds (or whatever) before they see your new image. The point is that you can't talk directly to the browser. You have to talk to the server, and then have the client periodically poll the server to see what new data it should get. I think. -- [ joel boonstra | [EMAIL PROTECTED] ] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] PDF_OPEN_IMAGE

2003-02-19 Thread Joel Colombo
); ImageFilledRectangle($image, 20, 20, 80, 80, $blue); $temp1 = pdf_open_image($pdf, "jpeg", "memory", $image LOST ME HERE !! please show me the way !!!!! Thanks Joel -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] DB row selection

2003-02-19 Thread Joel Colombo
same thing $query = "SELECT * FROM polls ORDER BY pollID DESC LIMIT 1"; dont need both params for LIMIT. just the num of rows u want back works too. Joel "Hans Prins" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... >

[PHP] Re: Permission Denied

2003-02-23 Thread Joel Colombo
u might have something on the ownership issue. i ran into the same thing... play with php's "chown" command. look it up php.net may help, i was having a similar issue a few months back. Joel "John Taylor-Johnston" <[EMAIL PROTECTED]> wrote in message news:[EMA

[PHP] Re: cookie problem..

2003-02-23 Thread Joel Colombo
make sure u run a session_start(); before anything on the page u cant access any session vars without it. Joel "Terry Lau" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hello, > I want to set a cookie when I enter a text into the text field, and

[PHP] Re: Maximum execution time explanation needed

2003-02-24 Thread Joel Colombo
stick a. set_time_limit(XXX); at the top of the page where XXX is the maximum time u would like it to run. ex... 180 for say 3 minutes. Joel Colombo "Mathieu Dumoulin" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Ok, i got this script i run on my

[PHP] Re: Yarrrrgggghhhhh || Simplest php question in existence........

2003-03-03 Thread Joel Colombo
query result like MYSQL ? $x = mysql_result($result, 0, 'field'); another way for mysql_result $r = mysql_fetch_assoc($result); $value = $r['fieldname']; -- OR -- just an array ? $result['fieldname'] = 5; $x = 'fieldname'; echo ($result[$x]); did that help ? i think i

Re: [PHP] Yarrrrgggghhhhh || Simplest php question in existence........

2003-03-03 Thread Joel Colombo
not mysql_fetch_array unless u need those int indexes. mysql_fetch_assoc is the same thing but does not index the integer value, just the string field name. Joel "Leif K-Brooks" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Use mysql_fetch_array instead

[PHP] Re: timestamp to english

2003-03-09 Thread Joel Colombo
PHP look at the Date( ) Function at php.net http://us2.php.net/manual/en/function.date.php Joel "Lord Loh." <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > How do I convert the unix time stamp (the one I get by the time()) to a > readable English lang

Re: [PHP] timestamp to english

2003-03-10 Thread Joel Colombo
jim there is no need for the second parameter in Date() for PHP, unless u want something other then current time. Date ('m-d-y') is the same as Date ('m-d-y', Time()) Joel "James Holden" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > In

[PHP] Re: standard html, hidden table's row and controls

2003-03-10 Thread Joel Colombo
ould look at another solution. perhaps an array of the items stored in javascript with a simple to store the active one. i have ALOT of experience with the hidden areas. Joel "Enediel" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > good day to all readers. &g

[PHP] Re: need help with parsing form input ...

2003-03-11 Thread Joel Colombo
function make_alphanum($string_val) { return eregi_replace("[^[:alnum:]]", "", $string_val); } strips everything except ALPHA and NUM Chars Joel "Kenn Murrah" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Greetings. > > I'

[PHP] Re: ZEND_SET_SYMBOL compilation error

2003-03-12 Thread Joel Colombo
might want to post this to the developers group. php.dev Joel "Joe Wong" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi, I am writing a PHP extension on Win32. I put a ZEND_SET_SYMBOL in the > php_init_xxx_globals() and it failed to compile under Win32

[PHP] Re: what problem in this sql

2003-03-12 Thread Joel Colombo
then 1 table in FROM. u must always specify where u are selecting from as well unless u SELECT * FROM t1, t2... that will work or SELECT t1.*, t2.field_a, t2.field_c... works also. Joel Colombo "Alawi" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > SELECT

[PHP] Re: what problem in this sql

2003-03-12 Thread Joel Colombo
oh and i just noticed u want to select the 'type_id' twice... i assume from each table SO u need to... SELECT table1.type_id AS t1_type_id, table2.type_id AS t2_type_id FROM t1, t2 use the 'AS' function it helps with a lot of headache later... trying to figure out y u get the

[PHP] Re: List tables

2003-03-15 Thread Joel Colombo
duplicate POST from php.db "Shaun" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi, > > i would like to list all of the tables and field names in my database > > e.g. > > table 1 > field 1 > field 2 > field 3 > table 2 > field 1 > field 2 > field 3 > table 3 > field

[PHP] Re: Function/globalizing

2003-03-16 Thread Joel Colombo
Try: somewhere global define : $encryptiontechnique = 'ENCRYPT ALGORITHM'; function encryptPassword($password, $salt='') { global $encryptiontechnique; if ($salt === '') { $salt = $encryptiontechnique; } // CODE.. } Joel Colombo "Liam

Re: [PHP] php-general as REPLY TO

2003-07-01 Thread Joel Rees
a Mac, but the operations are fundamental to GUI. I also find it a puzzle why so many companies seem to think that MSOutlook's advantages outweigh the problems of having to bolt antivirus on everything (and the occasional slip-through that then proceeds to dirty entire subnets), but that is a

Re: [PHP] PHP on one box, Apache on another?

2003-07-01 Thread Joel Rees
all web server (i. e., presenting the view of the file system that the outside world is supposed to see)? -- Joel Rees, programmer, Kansai Systems Group Altech Corporation (Alpsgiken), Osaka, Japan http://www.alpsgiken.co.jp -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP on one box, Apache on another?

2003-07-01 Thread Joel Rees
ave read somewhere reports of some project working to set up a similar special-purpose php-template server for php, but that may be just my imagination. -- Joel Rees, programmer, Kansai Systems Group Altech Corporation (Alpsgiken), Osaka, Japan http://www.alpsgiken.co.jp -- PHP General Mailing

Re: [PHP] Session vs Cookie Issues

2003-07-02 Thread Joel Rees
th either cookies or URL. Sessions can use URLs to store the session ID when the user has cookies turned off. -- Joel Rees, programmer, Kansai Systems Group Altech Corporation (Alpsgiken), Osaka, Japan http://www.alpsgiken.co.jp -- PHP General Mailing List (http://www.php.net/) To

Re: [PHP] Session vs Cookie Issues

2003-07-02 Thread Joel Rees
e in the chain? -- Joel Rees, programmer, Kansai Systems Group Altech Corporation (Alpsgiken), Osaka, Japan http://www.alpsgiken.co.jp -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Get Rid of this Crook

2003-07-03 Thread Joel Rees
n't aware of what the standard says concerning this topic, there are some RFCs you should read. -- Joel Rees, programmer, Kansai Systems Group Altech Corporation (Alpsgiken), Osaka, Japan http://www.alpsgiken.co.jp -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Spammer! ...

2003-07-07 Thread Joel Rees
> STOP SPAMING the list. http://www.php.net/mailing-lists.php Has some basic guidelines for list useage. (To the OP, [ANN] or [ANNOUNCEMENT] is a kinder tag.) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] print vs heredoc

2003-07-07 Thread Joel Rees
what looks good and heredoc is a nightmare of > horrors... If that's the results you're getting, I'd say heredoc is probably not appropriate for what you're trying to do. -- Joel Rees, programmer, Kansai Systems Group Altech Corporation (Alpsgiken), Osaka, Japan http://www

Re: [PHP] Wrong parameter count for fgets

2003-07-07 Thread Joel Rees
en would return. The second is explained to be an optional limit to the number of bytes to be read. > How come this error occur? My guess is that you tried to pass fgets either the wrong number or the wrong type of arguments. -- Joel Rees, programmer, Kansai Systems Group Altech Corporation

[PHP] [ML] Are there any announcement rules for this list? (was Re: [PHP] Re: NEW SPAMMER ...)

2003-07-08 Thread Joel Rees
#x27;s the only comment I have on the subject. If the list maintainers do have rules or guidelines about announcements, maybe one of them would speak up now? -- Joel Rees, programmer, Kansai Systems Group Altech Corporation (Alpsgiken), Osaka, Japan http://www.alpsgiken.co.jp -- PHP G

Re: [PHP] Is it possible to test an uploaded file to check the type?

2003-07-14 Thread Joel Rees
. Anyway, whether you parse or let the user tell you (MISE) depends on how careful you need to be (i. e., what your application is going to do with the upload). -- Joel Rees, programmer, Kansai Systems Group Altech Corporation (Alpsgiken), Osaka, Japan http://www.alpsgiken.co.jp -- PHP General

Re: [PHP] Looking for experienced PHP programmer in the Memphis, TN area

2003-07-14 Thread Joel Rees
> This position requires strong technical knowledge in a server-side > scripting technology such as PHP (preferred) /JSP/Perl/ASP. Knowledge > of SQL queries, stored procedures and database design required. Must > have experience in HTML/CSS and familiarity with HTTP and networking > concepts. Grap

Re: [PHP] Code and Good Design Methods

2003-07-14 Thread Joel Rees
rs (particualarly in relation to your app), and XSL can definitely be used in ways that don't conform to that model. That's no big deal, just part of what makes life interesting. (And if you get into Javaland, you'll hear a lot about MVC and frameworks. That's a slightly more

Re: [PHP] Re: Replacing newlines (\n) with smething else

2003-07-15 Thread Joel Rees
", $Marion ); $Marion = str_replace( "\n", "\n", $Marion ); $Marion = '' . $Marion . "\n"; echo 'Marion: ' . $Marion . "\n"; $Juliet = preg_replace( '/([^\r\n]*)(\r\n|\n\r|\r|\n)/', "\${1}\n", $Helen

Re: [PHP] Grabbing info from other Sites

2003-07-15 Thread Joel Rees
pport in Pear's encryption stuff. I'm sure the php community would appreciate it if you would build and share anything that's missing. ;-> > But I will take a look at SNOOPY. (hey.. isn't the name snoopy > copyrighted??) Trademarked, but only in relation to a c

Re: [PHP] BigEndian to integer

2003-07-15 Thread Joel Rees
hen you wake up this morning, the page for pack() lists an 'N' format for unsigned long big endian byte order for pack() and unpack(). I think what you probably want to do most is use the 'N' format when you unpack. (The other responses were amusing, was it a full moon last ni

Re: [PHP] Missing php.ini file

2003-07-15 Thread Joel Rees
> Greetings again, > > Did as Ralph suggested...here is the output : > > [EMAIL PROTECTED] php]# find / -name php.ini -print sudo is your friend. > /home/chris/Documents/Mein Stuph/PHP 4 > Package/php-4.3.1/pear/tests/php.ini > find: /mnt/floppy: Input/output error > find: /mnt/cdro

Re: [PHP] How To Ask Questions - Some List Guidelines

2003-07-15 Thread Joel Rees
son to do so. Yeah, but I think the OP was not talking about mangling headers. The subject was how to ask questions, not how to set up the list server. The question is whether or not a person wants personal replies, I think. -- Joel Rees, programmer, Kansai Systems Group Altech Corporation (

Re: [PHP] Grabbing info from other Sites

2003-07-15 Thread Joel Rees
> In php, I don't see anything right offhand. http://www.php.net/curl -- Joel Rees, programmer, Kansai Systems Group Altech Corporation (Alpsgiken), Osaka, Japan http://www.alpsgiken.co.jp -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www

Re: [PHP] So in summary this can't be done due to permission problems?

2003-07-15 Thread Joel Rees
to not listen to anything coming in over the network. -- Joel Rees, programmer, Kansai Systems Group Altech Corporation (Alpsgiken), Osaka, Japan http://www.alpsgiken.co.jp -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Grabbing info from other Sites

2003-07-15 Thread Joel Rees
other dep. since a > change in design may force a change in your logic. > If you can, try to build a separate interface for your app which you can > use to interface the backend of the other deps. You might even consider > Webservices. This way you are independend of the design of th

Re: [PHP] Code and Good Design Methods

2003-07-16 Thread Joel Rees
> Hi Joel, > > Thanks for nice comments on the XML, XSL. > > I want to know more about it. can you please send me > some article, links and tutorials? > > Thanks > > Hardik The ultimate source for xml related technologies is the World Wide Web Consortium at

Re: [PHP] Jumping between HTTP and HTTPS

2003-07-22 Thread Joel Rees
> if you do sniff the hash, the key, and the session. You will have to > get your request in before the key becomes stale, race, race! > In most cases the authentication is the > first thing done so we're dealing with micro seconds. Most cases? Why re-invent the wheel

Re: [PHP] classes v. functions

2003-07-23 Thread Joel Rees
eep tens of thousands of lines of code constantly in your head? Or do you like to focus on several hundred lines at a time, get those to behave, then move on to another part with a fairly high level of confidence that you won't shoot yourself in the foot by using the wrong coun

Re: [PHP] I need a PHP alternative to Windows Scheduled Tasks

2003-07-23 Thread Joel Rees
did a little script to mail out files on a regular basis. A co-worker wrote a C program that was called by the MSW2k scheduler, and that C program checked that my mailing script had completed before it tried to start another instance of the script. -- Joel Rees, programmer, Kansai

Re: [PHP] classes v. functions

2003-07-24 Thread Joel Rees
> Hi, > > am Wednesday 23 July 2003 11:48 schrieb Joel Rees: > > > (You know that $accesses->count and $accesses->resetCounter() are at > > least declared in the same class declaration. $accesses_count and > > accesses_resetCounter() could be declared in enti

Re: [PHP] arguments against moving site from Linux/Apache/PHP server to Windows/IIS/PHP needed

2003-07-25 Thread Joel Rees
arch your management is most likely to understand is research that is done in house. -- Joel Rees, programmer, Kansai Systems Group Altech Corporation (Alpsgiken), Osaka, Japan http://www.alpsgiken.co.jp -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: Redirection Question (I spoke to soon)

2003-07-25 Thread Joel Rees
re is still a problem with the header function - it still > will not redirect. So did you check for things like CR/LF? -- Joel Rees, programmer, Kansai Systems Group Altech Corporation (Alpsgiken), Osaka, Japan http://www.alpsgiken.co.jp -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Possible My Website was hacked... with PHP... please tell me what this is???

2003-07-31 Thread Joel Rees
And if you have any valuable data, consider it to have been stolen. If you have credit card numbers, report the possibility of theft to the credit card companies. Etc. If you're trolling, go away. -- Joel Rees, programmer, Systems Group Altech Corporation (Alpsgiken), Osaka, Japan http://w

Re: [PHP] Possible My Website was hacked... with PHP... please tell me what this is???

2003-07-31 Thread Joel Rees
quickest approach, anyway. And I'm sure they appreciate the notification. I sure would. -- Joel Rees, programmer, Systems Group Altech Corporation (Alpsgiken), Osaka, Japan http://www.alpsgiken.co.jp -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP or CGI in C/C++

2003-07-31 Thread Joel Rees
on if you have that much experience. A book you might find useful in this context is Chris Radcliff's Perl for the Web. (Perl is one of PHP's grandpappies, so much of the discussion will apply to PHP.) > I appreciate your comments in advance. I made no comments in advance, but you'

Re: [PHP] Opinions on Micro$oft .NET

2003-07-31 Thread Joel Rees
at's okay, jump into bed with them. If you don't like the deepening recession, run like hell, because if you think about it, it's exactly that kind of business that sucks all the value out of things. (And that's exactly what recession and depression are all about.) -- Joel

Re: [PHP] PHP vs ASP.NET "formal opinions" request

2003-08-11 Thread Joel Rees
n. Wish me luck :D Good luck, but don't be surprised if the road is longer and harder than it ought to be. Make sure you can make a living while you're fighting. -- Joel Rees, programmer, Systems Group Altech Corporation (Alpsgiken), Osaka, Japan http://www.alpsgiken.co.jp -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] mail() usage in for loops

2003-08-14 Thread Joel Rees
sending the next. You can get mass-mailing systems written in Perl, I think there are now some available for PHP. -- Joel Rees, programmer, Systems Group Altech Corporation (Alpsgiken), Osaka, Japan http://www.alpsgiken.co.jp -- PHP General Mailing List (http://www.php.net/) To un

Re: [PHP] Server-side script identified as IE

2003-08-14 Thread Joel Rees
earn to do it right. Doing it right involves teaching your buddy how to publish an interface to the parts of his site that he is willing to share, etc. If you're not legit, find something more constructive to do with your time. -- Joel Rees, programmer, Systems Group Altech Corporation

Re: [PHP] File System

2003-03-17 Thread Joel Colombo
) && is_file($dest_file) && etc etc etc) { unlink($dest_file) } -- or -- do charles method and be sure if you want to delete it is gets deleted. if (unlink($dest_file)) { // Actions when deleted }else { // Actions if file does not exist, or fails, or is errored, or etc etc et

[PHP] Re: Session's length.

2003-03-22 Thread Joel Colombo
Joel Colombo "L0vch1y" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > -> php-general. > > I used such code: > > $exp = 60*60*24*10; # for ten days. > session_set_cookie_params($exp); > > But it works wrong - cookies were removed

[PHP] Re: Installation

2003-03-26 Thread Joel Colombo
Here is the whole setup simple step-by-step even for PERL if you want ! http://www.ricocheting.com/server/apache.html Joel "Daniel Perry" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Dear Sir > > I require a complete installation package if possible.

[PHP] odbc_connect and segmentation fault

2003-03-28 Thread Joel Vorpagel
is. When I test this out on a simple php script (that only creates a connection to the db through odbc_connect), it causes a segmentation fault when run from the command line. Does anybody have any ideas or know the resolution? Thanks in advance! Joel ___

[PHP] Re: issue with connecting to DB

2003-03-30 Thread Joel Colombo
h the prob last week... running redhat with mysql PHP combo. all worked after i restarted the mysql service from command line. Joel Colombo "Jennifer Fountain" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] Here is the code: WhenI try to connect, I

Re: [PHP] Heredoc question

2003-06-05 Thread Joel Rees
> That's fine for that but I have several places that use if's and else's... AFAIK, you can't do conditionals inside a here doc. But then you don't have to build your entire output string in one here doc, either. Hmm. Maybe you're trying to build templates?

Re: [PHP] Include Bug?

2003-06-06 Thread joel boonstra
or your host re-organizes its directory structure, and all of your includes rely on the include_path, simply re-set include_path, and your site works again. joel [1] Of course, the order of directories in your include_path matters, too. If it contains '.:/usr/home/sites/www.walkereffects.com/&#

Re: [PHP] My Sincere Request!![Scanned]

2003-05-29 Thread Joel Rees
> 1. This is the an example of the Nigeria 419 scam. I have no idea how it got > the 419 in the name. http://www.google.com/search?hl=en&ie=ISO-8859-1&q=nigeria+419 in particular, http://home.rica.net/alphae/419coal/ -- Joel Rees <[EMAIL PROTECTED]> -- PHP

Re: [PHP] static vars question

2003-06-02 Thread Joel Rees
> As I said, since I was recursing through the function by calling it numerous > times in the middle of its execution, and since the function didn't > explicitly return, I didn't expect it to continue past each call. That's > all! Sounds like you're coming in from CoBOL or maybe BASIC? -- PHP

Re: [PHP] PHP vs. jsp, advice please

2003-06-09 Thread Joel Rees
bit of help there: http://jakarta.apache.org (tomcat is an open source java server that can be used with or without apache, and struts is an application framework.) -- Joel Rees <[EMAIL PROTECTED]> -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP vs. jsp, advice please

2003-06-10 Thread Joel Rees
was pretty steep for me because I was trying to pick up Java and objects at the same time. I think you'll have less trouble if you already are comfortable with Java. -- Joel Rees <[EMAIL PROTECTED]> -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Generate PHP using PERL???

2003-06-10 Thread Joel Rees
> Its kind of ugly, but its possible to call a php script thru a system() > function in Perl. Why bother going through a system call? If you have apache loading both mod_php and mod_perl, you can call (include or whatever) through normal http methods. -- Joel Rees <[EMAIL

Re: [PHP] Generate PHP using PERL???

2003-06-10 Thread Joel Rees
any made available for php but not for perl, I'd do the graphics manipulations on php pages and be done with it. (It seems odd to me that your hosting company doesn't want to load the perl modules. That might have me wanting to drop the hosting company and fire up an openbsd box to host my o

Re: [PHP] Good PHP Books

2003-06-16 Thread Joel Rees
st taught myself php from the on-line docs at http://www.php.net/docs.php and some good sample source. I'm thinking I'd focus less on the book and more on choosing good samples. I personally like O'Reilly books in general. But I haven't seen their PHP offerings, so I'l

Re: [PHP] Good PHP Books (topic wandering)

2003-06-17 Thread Joel Rees
learn the English > terms. I imagine things will improve with Dutch. Japanese docs have definitely been improving -- less reliance on technical words borrowed from English, greater accuracy when choosing native terminology, less Janglish grammar. -- Joel Rees <[EMAIL PROTECTED]> -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] free web host needed.

2003-06-24 Thread Joel Rees
gether, of course. However, guessing from his e-mail address, he may physically not be anywhere close to any dumpsters that would have old computers and parts in them, much less to a home that could be hooked up to cable/dsl. http://www.matkurja.com/eng/country-info/ -- Joel Rees, programmer,

Re: [PHP] Securing PHP code

2003-06-25 Thread Joel Rees
a file extension among the weaker class of protections. -- Joel Rees, programmer, Kansai Systems Group Altech Corporation (Alpsgiken), Osaka, Japan http://www.alpsgiken.co.jp -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Licenses -- was Re: [PHP][PHP-DEV][PHP-QA] PHP 5.0.0 Beta 1

2003-06-30 Thread Joel Rees
nterest obligations to pass some of the action back to the producers of free/open tools that help one make money. For MySQL AB, it will likely mean taking a slip in market share, since they lose their "favored" status in the PHP community. From what I've seen, Monty's a fairly sha

Re: [PHP] Installation for OS X

2003-06-30 Thread Joel Rees
et/macosx/php.html http://developer.apple.com/internet/macosx/phpappledevtools.html -- Joel Rees, programmer, Kansai Systems Group Altech Corporation (Alpsgiken), Osaka, Japan http://www.alpsgiken.co.jp -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP Web Based File Management and Security

2003-07-01 Thread joel boonstra
sers upload a .zip (or .tar.gz) file over HTTP, and have your server uncompress it and (optionally) create a directory structure matching the contents of that .zip. The 'gallery' image gallery software does .zip file uploading, and it's quite handy. Just a thought, joel -- [

[PHP] Re: Comma question

2002-07-23 Thread Joel Boonstra
7;ll start using {} everywhere I embed variables in strings, but I was unaware that stuff like this: "This is a $variable embedded in a string" might no longer work. If you have URLs, I'd love to read up on this. Thanks! -- [ joel boonstra | [EMAIL PROTECTED] ] --

[PHP] Re: Pine config

2002-07-23 Thread Joel Boonstra
ine your own index-format, and use the 'FROM' token instead of 'FROMORTO'. More info is available by going to Pine's config screen (m, s, c), searching for 'index-format' (w index-format ), and hitting CTRL-G to bring up the help. HTH! -- [ joel boonstra | [EMAIL PROTECTED] ] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: date

2002-07-24 Thread Joel Colombo
MP in mysql are 4 bytes and they both give u down to the second. then to find out today, u just run Date('m-d-Y'); compare those vals to Date('m-d-Y', $DB_VALUE); there u go it is today or it isnt ! out put data accordingly. Joel "Alexander Ross" <[EMA

[PHP] Red Hat 7.2 enabling MySQL on preinstalled PHP

2002-07-26 Thread Joel Lopez
I installed PHP when I installed Red Hat 7.2 without MySQL. I have now added MySQL but I can't figure out how to enable it in PHP. Can anyone help? thanks, Joel -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] adding Databases

2002-07-26 Thread Joel Lopez
Hi, Right now my PHP is set up to use Postgresql. I want to use MySQL now. How do I let PHP know that MySQL is now installed? thanks, Joel -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Sendmail "return-path" from my virtual webhost

2002-07-29 Thread Joel Boonstra
e Return-Path in this manner; that's out of my area of expertise, so if the above doesn't work, I'm not much more help... Joel -- [ joel boonstra | [EMAIL PROTECTED] ] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] MYSQL natsort() ?

2002-07-29 Thread Joel Colombo
r order by "number": generates results 10,15,150,2,30 i need a natural sort 2,10,15,30,150 is there a way to sort FLOAT valuse like this using an order by with a combo of other functions or something ? Thanks Joel -- PHP General Mailing List (http://www.php.net/) T

[PHP] enabling mysql support

2002-07-30 Thread Joel Lopez
Hi, I would like to recompile php with mysql support. I am a newbie. I really don't want to have to reinstall RedHat just to be able to use MySQL with php. I ran: rpm -qa | frgrep php and I see these: php-4.0.6-15 php-imap-4.0.6-15 asp2php-gtk-0.75.17.1 php-ldap-4.0.6-15

[PHP] Re: Auto Increment Problems....

2002-07-30 Thread Joel Boonstra
if you're counting rows just to find out what the next value for an ID is, then, as you already said, you're doing the wrong thing. Joel -- [ joel boonstra | [EMAIL PROTECTED] ] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: stripping quotes from urls and images

2002-07-31 Thread Joel Boonstra
ributes, I'm 100% sure you don't want to remove from *all* of them. Like this: Removing the quotes from the title attribute will likely break at least some browsers, if not all. So your regular expression needs to be able to handle that gracefully. Good luck! -- [ joel boo

[PHP] Re: filter files in a directory

2002-08-26 Thread Joel Boonstra
txt, .conf, etc...) you might want to come up with a more general way to add filters besides simply tacking on stuff with &&. One thought might be to keep an array of patterns, and do a match on the whole array. When a new file needs to be filtered, simply add an entry to the array, keeping

[PHP] Re: hidden PATH_INFO

2002-09-25 Thread Joel Boonstra
a useful one, but if you don't want to call a script directly, I think you'll need a rewrite. There also may be another way to do it in Apache, but I don't think there's anything in PHP you can do to accomplish this. -- [ joel boonstra | [EMAIL PROTECTED] ] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Sessions are acting strangely

2002-10-28 Thread Joel Boonstra
ise, have you checked with your hosting company to see if this is a common issue that their customers have? -- [ joel boonstra | [EMAIL PROTECTED] ] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: counting clicks on a flash ad

2002-10-29 Thread Joel Boonstra
er, it supports Flash banners, as well as everything else you want to throw at it, it's free, and it's free. Installation is remarkably easy. Joel -- [ joel boonstra | [EMAIL PROTECTED] ] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Does anyone know if this is possible?

2002-11-04 Thread Joel Boonstra
f you can't use perl for the whole thing, perhaps you could have PHP do all your logic, and then pass the data to a perl script to format and save it to a file. Or maybe sprintf() does everything you need... Joel (more on perl formats: http://www.perl.com/doc/manual/html/pod/perlform.html) --

[PHP] RE: Why $ on variable names?

2002-11-12 Thread Joel Boonstra
x27;t imagine how I could deal with variables that didn't have something in front of them to separate them from barewords. Oh well. -- [ joel boonstra | [EMAIL PROTECTED] ] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Array Searching

2002-11-15 Thread Joel Boonstra
be at, or this: http://www.php.net/manual/en/function.array-search.php if you're not sure what key 'foo' will be at and you want to know what that key is. Joel -- [ joel boonstra | [EMAIL PROTECTED] ] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Exporting mySQL Table Data to .csv

2002-07-10 Thread Joel Boonstra
;t a PHP script (it's Perl), but it does exactly what you want: http://oss.gospelcom.net/staff.php The first tool listed there is called 'cvsdump' -- it dumps, processes, and mails a MySQL table in CVS. HTH! -- [ joel boonstra | [EMAIL PROTECTED] ] -- PHP General Mailing List (h

  1   2   3   >