[PHP] Newbie Q: Any difference what the .ext is on include() files???

2002-09-28 Thread -[ Rene Brehmer ]-
not care about the include() extensions??? I do have some .php includes, because they run PHP code, but most of my includes are just text that needs to put in the right part of a table... TIA Rene -- Rene Brehmer System developer in the making... This message was written on 100% recycled spam

Re: [PHP] Newbie Q: Any difference what the .ext is on include() files???

2002-09-30 Thread -[ Rene Brehmer ]-
path. $_CONF['html'] = '/home/groups/user/htdocs/'; $_CONF['include'] = '/home/groups/user/includes/'; And then base all of your include(), fopen(), header(), href, etc, off of those two variables. Makes moving your sites very easy, too, just change the values of those variables... -- Rene

[PHP] Looking for easier way to build email message

2008-01-24 Thread Rene Brehmer
Drew a blank off the archive, so here goes... I'm working on some forms for our company website, all of which simply have to be mailed to us by email. After verifying that the content of all the fields is valid and the proper type, it builds the email message as following. This all works great,

[PHP] Re: How to deal with errors in forms

2006-08-26 Thread Rene Brehmer
Documented research indicate that on Fri, 25 Aug 2006 13:18:25 +0200, Ivo F.A.C. Fokkema wrote: You might also try to process the results from the form first, and then, if errors are found, display the form again and put the data in there yourself. No need to send the user back and forth.

Re: [PHP] OT - Blank subject lines!!!

2005-06-17 Thread -{ Rene Brehmer }-
That's why I have this at the top of my mail filters: if subject matches regexp ([[:blank:]][[:blank:]][[:blank:]]+) | (^$) | (^[[:blank:]]+$) transfer to trash I'm using Eudora btw... Was gonna do a filter to dump all subjects that have nothing else but help in them too, but haven't quite

[PHP] Re: So many returned mail notices!

2005-06-20 Thread -{ Rene Brehmer }-
I'm subbed to both the newsgroup, and the emails, and I have them in both. It's a virus using the PHP list address as sender, apparently going through RoadRunner, and then posting itself to the newsserver. Since the messages don't have the [PHP] marker, they're posted to the newsgroup, not the

Re: [PHP] Re: security question...??

2005-06-20 Thread -{ Rene Brehmer }-
I don't see any way of doing such a thing, without also seeing how easily it would be to fake it. I'm not really sure what it is you want to achieve. As a webmaster you can't really take responsibility for the clients using insecure software to access your website. It is technically possible to

Re: [PHP] Re: security question...??

2005-06-21 Thread Rene Brehmer
However secure you try to make a web application, even with encryption, it still does not hinder anyone from putting a packet sniffer on your client and grab whatever sensitive information you send out. And if a hacker really wanted to get hold of your sensitive information, he wouldn't actually

Re: [PHP] Re: So many returned mail notices!

2005-06-21 Thread Rene Brehmer
... -- Rene Brehmer aka Metalbunny We have nothing to fear from free speech and free information on the Internet, but pop-up advertising! http://metalbunny.net/ My little mess of things... -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: So many returned mail notices!

2005-06-21 Thread Rene Brehmer
. but Chris, clues are very expensive in England - not everyone can afford them. ;-) But I thought Clue was a board game? #endsarcasm -- Rene Brehmer aka Metalbunny We have nothing to fear from free speech and free information on the Internet, but pop-up advertising! http://metalbunny.net/ My

Re: [PHP] Re: security question...??

2005-06-21 Thread Rene Brehmer
Documented research indicate that on Tue, 21 Jun 2005 16:25:36 +0100, Shaw, Chris - Accenture wrote: You could always use a IE exploit to crash the browser, if they are still requesting, you know they are not IE. ;) Out of interest, what information are you planning on getting from the

Re: [PHP] Re: security question...??

2005-06-21 Thread Rene Brehmer
means to achieve what you want. /rambling off -- Rene Brehmer aka Metalbunny We have nothing to fear from free speech and free information on the Internet, but pop-up advertising! http://metalbunny.net/ My little mess of things... -- PHP General Mailing List (http://www.php.net/) To unsubscribe

Re: [PHP] Re: Apache Webserver User Survey

2005-06-21 Thread Rene Brehmer
for in Timbuktu is generally the same as in Alaska, the different local languages aside: Serving porn sites, news and reviews, technical and not so technical references, and community sites (those four things happen to be what about 70% of the web consists of). -- Rene Brehmer aka Metalbunny We have nothing

Re: [PHP] Re: Apache Webserver User Survey

2005-06-22 Thread Rene Brehmer
IIS or something else), search through Yahoo Groups (groups.yahoo.com), there's bound to be a few popping up. Rene -- Rene Brehmer aka Metalbunny We have nothing to fear from free speech and free information on the Internet, but pop-up advertising! http://metalbunny.net/ My little mess

[PHP] Re: Amy's Site question

2005-06-22 Thread Rene Brehmer
($cartoon['art_height'] * 2.54,1)); ? cm This also puts a , for every thousand by the way. It has an option to feed it a specific format string, but I never use that part of it, so you'll have to check the manual for that if you need it, sorry. Rene -- Rene Brehmer aka Metalbunny We have nothing

[PHP] Re: php - jscript - onclick event..

2005-06-22 Thread Rene Brehmer
... FWIW Rene Documented research indicate that on Wed, 22 Jun 2005 10:15:53 -0700, bruce wrote: hi.. a somewhat php/jscript question... -- Rene Brehmer aka Metalbunny We have nothing to fear from free speech and free information on the Internet, but pop-up advertising! http

Re: [PHP] Re: security question...??

2005-06-22 Thread Rene Brehmer
... rene, you also have to understand, i'm not trying to determine if the user's entire system is 'clean/valid'. i'd settle for a way of knowing that the browser/client that i'm talking to is legitimate!! -bruce -- Rene Brehmer aka Metalbunny We have nothing to fear from free speech and free

[PHP] Re: Removing nonlatin characters

2005-06-29 Thread Rene Brehmer
; } This function is part using code once posted on this list, part my own creation. HTH Rene -- Rene Brehmer aka Metalbunny We have nothing to fear from free speech and free information on the Internet, but pop-up advertising! http://metalbunny.net/ My little mess of things... -- PHP General

Re: [PHP] Re: Removing nonlatin characters

2005-07-03 Thread Rene Brehmer
Documented research indicate that on Fri, 1 Jul 2005 13:58:23 +0300, Dotan Cohen wrote: On 6/29/05, Rene Brehmer [EMAIL PROTECTED] wrote: I think you mean something like this: function stripAccents($string) { $returnString = strtr($string

Re: [PHP] Re: Removing nonlatin characters

2005-07-03 Thread Rene Brehmer
Documented research indicate that on Fri, 1 Jul 2005 13:58:23 +0300, Dotan Cohen wrote: On 6/29/05, Rene Brehmer [EMAIL PROTECTED] wrote: I think you mean something like this: function stripAccents($string) { $returnString = strtr($string

Re: [PHP] Re: Removing nonlatin characters

2005-07-05 Thread Rene Brehmer
Documented research indicate that on Mon, 4 Jul 2005 19:29:38 +0300, Dotan Cohen wrote: On 7/4/05, Rene Brehmer [EMAIL PROTECTED] wrote: Documented research indicate that on Fri, 1 Jul 2005 13:58:23 +0300, Dotan Cohen wrote: Totally forgot ... there is one advantage that you can control

Re: [PHP] Report

2005-07-05 Thread Rene Brehmer
) messages as well if the list has a flat rule about no attachments. I don't really care, I just have to regularly empty my attachments folder because of all those vCards -- Rene Brehmer aka Metalbunny We have nothing to fear from free speech and free information on the Internet, but pop-up

Re: [PHP] who can do this without the recursion

2005-07-05 Thread Rene Brehmer
those trees fast when the data is variable and stored in a database... -- Rene Brehmer aka Metalbunny We have nothing to fear from free speech and free information on the Internet, but pop-up advertising! http://metalbunny.net/ My little mess of things... -- PHP General Mailing List (http

[PHP] Calculation error - PHP not following math hierarchi ???

2005-08-03 Thread Rene Brehmer
, but haven't had any success yet ... Any suggestions ? Rene -- Rene Brehmer aka Metalbunny We have nothing to fear from free speech and free information on the Internet, but pop-up advertising! http://metalbunny.net/ My little mess of things... -- PHP General Mailing List (http://www.php.net

Re: [PHP] Calculation error - PHP not following math hierarchi ???

2005-08-03 Thread Rene Brehmer
Documented research indicate that on Wed, 3 Aug 2005 16:38:08 +0100, Robin Vickery wrote: On 8/3/05, Rene Brehmer [EMAIL PROTECTED] wrote: Using this function: function calc_distance($curX,$curY,$newX,$newY) { // calculate distance to new location $distX = abs($curX - $newX); $distY

[PHP] What's the going rate for making websites ?

2005-04-03 Thread -{ Rene Brehmer }-
Hi gang Sorry for asking this question here, but I don't know where else to ask. And Goole'ing didn't help me much. My father-in-law has a friend in Alaska (and I'm in Canada) that needs a website done. Not sure what kinda site he wants done yet, or how much he needs me to do for him (like

[PHP] Rookie mail() q's .. can't find answer after RTFM...

2002-12-29 Thread -[ Rene Brehmer ]-
, or does the mail() function figure that out itself? My incoming mail server does not accept messages without a date field, so if I need to add it, I'd really like to know. It also doesn't like messages with more than 1 of each field...(except received-by). TIA Rene -- Rene Brehmer This message

[PHP] 2 Qs: Passing current URL with session and how to avoid session timeout???

2003-01-18 Thread -[ Rene Brehmer ]-
to 0 there... (not sure if that means it expires right away, or not at all) Anyway to do this??? TIA Rene -- Rene Brehmer This message was written on 100% recycled spam. Come see! My brand new site is now online! http://www.metalbunny.net -- PHP General Mailing List (http://www.php.net

Re: [PHP] Converting accented characters or numeric equivalents to non-accented

2003-01-18 Thread -[ Rene Brehmer ]-
that is... The above structure is what I use constantly to do this... HTH Rene -- Rene Brehmer This message was written on 100% recycled spam. Come see! My brand new site is now online! http://www.metalbunny.net -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

Re: [PHP] 2 Qs: Passing current URL with session and how to avoid session timeout???

2003-01-18 Thread -[ Rene Brehmer ]-
... Retaining matching settings in my test-enviro is not entirely possible because their Apache is older than mine...and they run with globals on, and I design for them off, just to be safe... Rene -- Rene Brehmer This message was written on 100% recycled spam. Come see! My brand new site is now online

Re: [PHP] 2 Qs: Passing current URL with session and how to avoid session timeout???

2003-01-18 Thread -[ Rene Brehmer ]-
the page is launched without a call from a mother page... But that'll have to wait until morning ... it's 4.45 AM here now ;-) ... gotta get some snooze... Rene -- Rene Brehmer This message was written on 100% recycled spam. Come see! My brand new site is now online! http://www.metalbunny.net

Re: [PHP] Changing order of just one array item?

2003-01-19 Thread -[ Rene Brehmer ]-
not what I'm trying to do. I know how to change the keys, but I'm looking to change the internal order of the key/value pairs. -- Rene Brehmer This message was written on 100% recycled spam. Come see! My brand new site is now online! http://www.metalbunny.net -- PHP General Mailing List (http

Re: [PHP] Which country?

2003-01-20 Thread -[ Rene Brehmer ]-
that includes information down to and including Cities etc. The accuracy of this type of service in some areas of the world is not exactly accurate but usable. Look for PHP whois classes but remember that most registries restrict the number of requests these days. -- Rene Brehmer This message

Re: [PHP] pop-up problem

2003-01-22 Thread -[ Rene Brehmer ]-
am look for something that doesn't exist. -- Rene Brehmer This message was written on 100% recycled spam. Come see! My brand new site is now online! http://www.metalbunny.net -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] chill out

2003-04-04 Thread -{ Rene Brehmer }-
obtain the answer, than just pretend they don't exist ... that also helps keep the noise to a minimum. Rene -- Rene Brehmer This message was written on 100% recycled spam. Come see! My brand new site is now online! http://www.metalbunny.net -- PHP General Mailing List (http://www.php.net

Re: [PHP] chill out

2003-04-04 Thread -{ Rene Brehmer }-
lists in the past 5 years, and all lists have had this very problem ... some are nice, some aren't ... some needs to learn how to ask a question, some needs to learn how to answer without biting the OP's head of... Rene -- Rene Brehmer This message was written on 100% recycled spam. Come see! My

Re: [PHP] chill out

2003-04-04 Thread -{ Rene Brehmer }-
a sweet responsibility, never an opportunity. HaSeEb IqBaL. -- Rene Brehmer This message was written on 100% recycled spam. Come see! My brand new site is now online! http://www.metalbunny.net -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Great Opportunity for all group members!!!

2003-04-06 Thread -{ Rene Brehmer }-
on the message and *poof* all gone... even on the php list thats all i have to do (all the messages get sent to me from the original sender not the mailing list itself).. -- Rene Brehmer This message was written on 100% recycled spam. Come see! My brand new site is now online! http://www.metalbunny.net

[PHP] Headers in body - what am I doing wrong???

2003-06-11 Thread -{ Rene Brehmer }-
something it doesn't understand. I use the reply to field just as a safety measure ... Any ideas y'all ??? TIA Rene -- Rene Brehmer aka Metalbunny http://metalbunny.net/ References, tools, and other useful stuff... -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

RE: [PHP] Headers in body - what am I doing wrong???

2003-06-12 Thread -{ Rene Brehmer }-
-- Rene Brehmer aka Metalbunny http://metalbunny.net/ References, tools, and other useful stuff... -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Headers in body - what am I doing wrong???

2003-06-12 Thread -{ Rene Brehmer }-
11-06-2003, Chris Hayes wrote: (darn, this one was already answered, i hate it that some people ask questions with a future time.) -- Rene Brehmer aka Metalbunny http://metalbunny.net/ References, tools, and other useful stuff... -- PHP General Mailing List (http://www.php.net/) To unsubscribe

[PHP] Compiling 4.2.3 with MySQL ... what does it look for?

2003-07-05 Thread -{ Rene Brehmer }-
other SQL for that matter, so got 0 experience in getting the system up and running with it... TIA Rene -- Rene Brehmer aka Metalbunny http://metalbunny.net/ References, tools, and other useful stuff... -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

[PHP] URL correctimizer ... how to make one?

2003-07-18 Thread -{ Rene Brehmer }-
, as I figure I'd learn more that way ... Rene -- Rene Brehmer aka Metalbunny http://metalbunny.net/ References, tools, and other useful stuff... -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] pop-up problem

2003-03-11 Thread -{ Rene Brehmer }-
. On browsers where the JIT is disabled, only HREF is executed. Rene -- Rene Brehmer This message was written on 100% recycled spam. Come see! My brand new site is now online! http://www.metalbunny.net -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] pop-up problem

2003-03-13 Thread -{ Rene Brehmer }-
On Tue, 11 Mar 2003 21:37:37 +0100, Ernest E Vogelsinger wrote about Re: [PHP] pop-up problem what the universal translator turned into this: At 21:02 11.03.2003, -{ Rene Brehmer }- said: [snip] On Mon, 20 Jan 2003 21:48:22 +, Sean Burlington wrote

Re: [PHP] Checking for a Valid Email String.

2003-03-13 Thread -{ Rene Brehmer }-
the address. It's for subbing to my maillist, so the mailserver actually does the verification itself. Any comments ??? Or suggestions ??? Rene -- Rene Brehmer This message was written on 100% recycled spam. Come see! My brand new site is now online! http://www.metalbunny.net -- PHP General

Re: [PHP] Checking for a Valid Email String.

2003-03-13 Thread -{ Rene Brehmer }-
to be filled in. With ' it doesn't... I can't produce the correct results with ' though. Maybe it's because I'm too used at basic and JS ... PHP is a tad different... Rene -- Rene Brehmer This message was written on 100% recycled spam. Come see! My brand new site is now online! http

Re: [PHP] RE: Calculates time elapsed between two date

2003-03-13 Thread -{ Rene Brehmer }-
. Can't seem to find any of these functions in the PHP manual. Thanks Nyon -- Rene Brehmer This message was written on 100% recycled spam. Come see! My brand new site is now online! http://www.metalbunny.net -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

Re: [PHP] authorization

2003-03-13 Thread -{ Rene Brehmer }-
see how you can avoid it one way or the other. Rene -- Rene Brehmer This message was written on 100% recycled spam. Come see! My brand new site is now online! http://www.metalbunny.net -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re user Identifying

2003-03-13 Thread -{ Rene Brehmer }-
or password. When the user returns to the site, you'll need to look for the cookie, and then compare the userID to the database, and provide auto-login by retrieving login and password from the database. I don't use cookies myself, so can't help beyond that. Rene -- Rene Brehmer This message

Re: [PHP] Is there any reason...

2003-03-13 Thread -{ Rene Brehmer }-
listserv lists does this per default, and you'll actually need to alter the config to make it not do it. I hate having to check the to-field everytime I sent something to the list. Rene -- Rene Brehmer This message was written on 100% recycled spam. Come see! My brand new site is now online! http

Re: [PHP] http-https-http redirection causes browser to show alert dialog

2003-03-13 Thread -{ Rene Brehmer }-
the dialog anyways ... On XP I don't understand why it doesn't just popup a bubble when the keylock disappears ... Since I don't really notice the keylock anyways with the PGP keylock being around the same corner always... Rene -- Rene Brehmer This message was written on 100% recycled spam. Come see

Re: [PHP] table cell space under image in IE

2003-03-13 Thread -{ Rene Brehmer }-
and the smallest size it will move to is approx 10pxls below the bottom of the image. Very frustrating! I know this is not exactly on topic but I produce all html by php and I don't want to go out and add myself to an html list (if there is such a thing). -- Rene Brehmer This message was written on 100

Re: [PHP] Please Help with the Code

2003-03-13 Thread -{ Rene Brehmer }-
sections of my app, not by means of redirect but by including() the necessary code. Same I do. Just shift the content according to the state. It's loads simpler to program and avoids the redirect issues. (And also lowers the disk space needed ... in my case atleast). Rene -- Rene Brehmer This message

Re: [PHP] Generating Statics Pages

2003-03-14 Thread -{ Rene Brehmer }-
that question. Personally I write custom programs in VB6 that build HTML files based upon data from whatever source I'm working on... Rene -- Rene Brehmer This message was written on 100% recycled spam. Come see! My brand new site is now online! http://www.metalbunny.net -- PHP General Mailing

Re: [PHP] trikky string limit question

2003-03-14 Thread -{ Rene Brehmer }-
be used for things you reuse several times, or plan to be able to change alot later, either manually or programmatically. The more variables you use, the slower it runs. To me it also gets more messy to look at ... Rene -- Rene Brehmer This message was written on 100% recycled spam. Come see

Re: [PHP] Do query strings get spidered by Google?

2003-03-16 Thread -{ Rene Brehmer }-
columns, but I do not want to lose the ability of search engines to spider them. Otherwise, I believe there is a way to convert the quert string to a trailing / so it looks like directory structure, does anyone have info on that? -- Rene Brehmer This message was written on 100% recycled spam

[PHP] Getting false positive on strpos ... despite doublecheck... HELP!

2003-03-17 Thread -{ Rene Brehmer }-
coded yet. Like I said in the top, some of the fields are optional, and the read script is made to compensate for this. TIA Rene -- Rene Brehmer This message was written on 100% recycled spam. Come see! My brand new site is now online! http://www.metalbunny.net -- PHP General Mailing List (http

Re: [PHP] Using PHP to get a word count of a MSword doc

2003-03-17 Thread -{ Rene Brehmer }-
anyone help?? In Java I just convert the text to tokens, and then get the token count, extremely simple, but not sure PHP's tokenizer can do this... Rene -- Rene Brehmer This message was written on 100% recycled spam. Come see! My brand new site is now online! http://www.metalbunny.net

Re: [PHP] Getting false positive on strpos ... despite doublecheck... HELP!

2003-03-18 Thread -{ Rene Brehmer }-
))); echo span class=\ylwbld\On $print, ; continue; } Do they cause the same behaviour as an if ... elseif structure??? But thanks ... will change it ASAP ... Rene -- Rene Brehmer This message was written on 100% recycled spam. Come see! My brand new site is now online! http

Re: [PHP] Getting false positive on strpos ... despite doublecheck... HELP!

2003-03-18 Thread -{ Rene Brehmer }-
to make the part that actually makes the source file... Thx all Rene -- Rene Brehmer This message was written on 100% recycled spam. Come see! My brand new site is now online! http://www.metalbunny.net -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

Re: [PHP] Getting false positive on strpos ... despite doublecheck... HELP!

2003-03-18 Thread -{ Rene Brehmer }-
the rest of the statements inside a loop and goes to the next iteration. Thanks ... just managed to find it in the manual in the meantime ... sometimes one just gotta read before asking ... ;-) Rene -- Rene Brehmer This message was written on 100% recycled spam. Come see! My brand new site is now

Re: [PHP] Call to undefined function: mssql_pconnect()

2003-03-18 Thread -{ Rene Brehmer }-
or something? If so, how do I do that? Did you remember to uncomment the module references in PHP.INI??? Easiest way is to just search through the file for your module(s)'s filename(s) and remove the comment ';' markers in front of 'em ... Rene -- Rene Brehmer This message was written on 100

Re: [PHP] Using PHP to get a word count of a MSword doc

2003-03-18 Thread -{ Rene Brehmer }-
task, and requires careful studying of how the system calls needs to made ... Totally don't understand why anyone likes to use a language designed for washing machines and coffee makers...(that's actually part of why it's called Java) Rene -- Rene Brehmer This message was written on 100

Re: [PHP] Using PHP to get a word count of a MSword doc

2003-03-18 Thread -{ Rene Brehmer }-
a massive memory drain). I do this is in all my VB programs to deal with file paths ... in VB there's simply no simpler to construct entire folder trees that don't exist... Rene -- Rene Brehmer This message was written on 100% recycled spam. Come see! My brand new site is now online! http

Re: [PHP] Mailing List Digest

2003-03-18 Thread -{ Rene Brehmer }-
into 1 huge e-mail. You would recieve about 2 digests per day, instead of 100+ single e-mails. Although i prefer the single e-mail system... -- Rene Brehmer This message was written on 100% recycled spam. Come see! My brand new site is now online! http://www.metalbunny.net -- PHP General

Re: [PHP] nstalling PHP

2003-03-18 Thread -{ Rene Brehmer }-
the .phtml extension ... If you want all HTML files to parsed as PHP as well, you'll need to add them here as well... Rene -- Rene Brehmer This message was written on 100% recycled spam. Come see! My brand new site is now online! http://www.metalbunny.net -- PHP General Mailing List (http

Re: [PHP] Which is quicker, if-else statements

2003-03-18 Thread -{ Rene Brehmer }-
that wrong ??? Rene -- Rene Brehmer This message was written on 100% recycled spam. Come see! My brand new site is now online! http://www.metalbunny.net -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] mass mail and selected mailings

2003-03-18 Thread -{ Rene Brehmer }-
of addresses to use, and of it goes .. spittin' out thousands of mails in a few seconds ... This one's a W32 GUI program ... Rene -- Rene Brehmer This message was written on 100% recycled spam. Come see! My brand new site is now online! http://www.metalbunny.net -- PHP General Mailing List (http

Re: [PHP] Mail attachment

2003-03-18 Thread -{ Rene Brehmer }-
plain text, and no special (read: non-western) characters, i don't think you need that part. If you use any highbit characters (128) you need it, otherwise the recipient's client can't figure out what codetable they're in... Rene -- Rene Brehmer This message was written on 100% recycled spam

Re: [PHP] php and javascript

2003-03-18 Thread -{ Rene Brehmer }-
used in Java and JScript, the newer JIT compilers just ignore them... Rene -- Rene Brehmer This message was written on 100% recycled spam. Come see! My brand new site is now online! http://www.metalbunny.net -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

Re: [PHP] Does PHP run better under any specific unix os?

2003-03-18 Thread -{ Rene Brehmer }-
-- Rene Brehmer This message was written on 100% recycled spam. Come see! My brand new site is now online! http://www.metalbunny.net -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Posting Query Results to an HTML form

2003-03-19 Thread -{ Rene Brehmer }-
value=value That's not a trick, that's actually required with HTML 4 and up. And XML... Rene -- Rene Brehmer This message was written on 100% recycled spam. Come see! My brand new site is now online! http://www.metalbunny.net -- PHP General Mailing List (http://www.php.net/) To unsubscribe

Re: [PHP] creating mailing list in php?

2003-03-22 Thread -{ Rene Brehmer }-
, and I might just not be paying attention, but is there any word about this list going phpBB or the like sometime soon? That would be great. Thanks again for your help. -jason -- Rene Brehmer This message was written on 100% recycled spam. Come see! My brand new site is now online! http

Re: [PHP] PHP Send Mail Main headers.

2003-03-27 Thread -{ Rene Brehmer }-
... and depending on receiving server's setup, also a subject ... some servers require from, to, subject, and date to be set as minimum ... Alot of mailservers I've had to transfer through refuses to accept mail without the TO field. Rene -- Rene Brehmer This message was written on 100% recycled

Re: [PHP] Is there a PHP for Dummies?

2003-03-29 Thread -{ Rene Brehmer }-
. This was just an example I used. In general I don't find the PHP manual very helpful - I tend to get more out of the users comments than the actual manual.. -- Rene Brehmer This message was written on 100% recycled spam. Come see! My brand new site is now online! http://www.metalbunny.net -- PHP

Re: [PHP] Submit Image Button

2003-04-03 Thread -{ Rene Brehmer }-
{ // it was submitted Plus you're missing a $ in the second $_GET... Rene -- Rene Brehmer This message was written on 100% recycled spam. Come see! My brand new site is now online! http://www.metalbunny.net -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

Re: [PHP] Re: Capitalizing names ... needs the final touch...

2002-10-10 Thread -[ Rene Brehmer ]-
Hi Ulf Rompe, On Tue, 08 Oct 2002 12:10:15 +0200, you wrote about [PHP] Re: Capitalizing names ... needs the final touch... something that looked like this: -[ Rene Brehmer ]- [EMAIL PROTECTED] writes: Firstname Middlename Last-name But I want the last namepart after the slash (-name

[PHP] How to navigate backwards in PHP ???

2002-10-12 Thread -[ Rene Brehmer ]-
doable in PHP ... only I can't figure out how ... does it have something like Document Referrer ??? which could contain the URL of the sender, which I'd then be able to plump into a variable, which could then be used when generating the links to go back to the sender page... TIA Rene -- Rene

[PHP] Capitalizing names etc. part II - found a solution

2002-10-30 Thread -[ Rene Brehmer ]-
for this way of doing it, please let me know. You may freely copy and dsitribute this as you wish. Rene -- Rene Brehmer System developer in the making... This message was written on 100% recycled spam. Come see! My brand new site is now online! http://www.metalbunny.net -- PHP General Mailing List

Re: [PHP] Php web hosting

2002-10-31 Thread -[ Rene Brehmer ]-
For the international host (dotserv.com), go here: http://www.dotserv.com -- Rene Brehmer System developer in the making... This message was written on 100% recycled spam. Come see! My brand new site is now online! http://www.metalbunny.net -- PHP General Mailing List (http://www.php.net

Re: [PHP] Multiple Addresses Mailer

2002-10-31 Thread -[ Rene Brehmer ]-
that you've got concent from the receivers for the messages. My mail server handles all the concent things itself, and sofar my ISPs have not complained about the up to 3 digit amounts of message that go out each day, with up to 4 digits coming in... -- Rene Brehmer System developer in the making

Re: [PHP] Re: Multiple Addresses Mailer

2002-10-31 Thread -[ Rene Brehmer ]-
. You'll still need something in the To: field ... something valid too that is... -- Rene Brehmer System developer in the making... This message was written on 100% recycled spam. Come see! My brand new site is now online! http://www.metalbunny.net -- PHP General Mailing List (http

Re: [PHP] My mail have a problem!!

2002-10-31 Thread -[ Rene Brehmer ]-
can tell me a better free mail which support pop3 and smtp? -- Rene Brehmer System developer in the making... This message was written on 100% recycled spam. Come see! My brand new site is now online! http://www.metalbunny.net -- PHP General Mailing List (http://www.php.net/) To unsubscribe

[PHP] Re: Capitalizing names etc. part II - found a solution

2002-11-01 Thread -[ Rene Brehmer ]-
at the File I/O functions yet... Rene -- Rene Brehmer System developer in the making... This message was written on 100% recycled spam. Come see! My brand new site is now online! http://www.metalbunny.net -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

[PHP] How to use string as variable name?

2002-11-18 Thread -[ Rene Brehmer ]-
Hi gang I'm suffering under the lack of an SQL, which would've made this loads easier, so instead I'm forced at using a bunch of arrays to keep track of the info instead... But here's the prob: I'm working on a list of premieredates for movies. Here's the HTML version I made to figure out how to

Re: [PHP] Re: http$B$G%;%C%7%g%s$r3+;O$7$?l9g!(Bhttps$B$X9T$C$F$b7QB3$5$l$k$N$G$7$g$$+!)(B

2002-11-21 Thread -[ Rene Brehmer ]-
Hi BAROILLER Pierre-Emmanuel, On Sat, 9 Nov 2002 15:34:56 +0100, you wrote about [PHP] Re: http$B$G%;%C%7%g%s$r3+;O$7$?l9g!(Bhttps$B$X9T$C$F$b7QB3$5$l$k$N$G$7$g$$+!)(B something that looked like this: Hi ! Could you write it in english please ? Yeah ... not alot of people here can read

Re: [PHP] How to use string as variable name?

2002-11-21 Thread -[ Rene Brehmer ]-
Hi Adam Voigt, On 18 Nov 2002 13:11:30 -0500, you wrote about Re: [PHP] How to use string as variable name? something that looked like this: $date = 2002-11-22; $myvar = a . str_replace(-,,$date); $$myvar = hi; echo $a20021122; GREAT ... works right off ..thx a billion ... Rene -- PHP

[PHP] echo'ing array contents through reference variable ... why doesn't this work???

2002-11-21 Thread -[ Rene Brehmer ]-
I've run into something I don't understand... This is my test code: $premieredag = array(2002-11-22,2002-11-29,2002-12-06,2002-12-18); $d20021122 = array(001); $d20021129 = array(002,003,004); $d20021206 = array(005,006,007); $d20021218 = array(008,009); for ($i = 0; $i

Re: [PHP] Getting info from users comp?

2002-11-21 Thread -[ Rene Brehmer ]-
Hi @ Edwin, On Wed, 20 Nov 2002 01:24:18 +0900, you wrote about Re: [PHP] Getting info from users comp? something that looked like this: And if its not possible with PHP, what language then? I don't think this is possible with a server-side language. But of course, this in NOT impossible with

Re: [PHP] running php on apache 2 on windows??

2002-11-21 Thread -[ Rene Brehmer ]-
Hi Chris Edwards, I'm running PHP 4.2.3 on Apache 2.0.40 on WinXP Pro ... works troublefree ... except that Apache is very vulnerable when running on XP ... certain web'ed requests to it can cause Windows to hit a stop error ... Think I'm running it CGI though .. dunno ... completely green at

Re: [PHP] echo'ing array contents through reference variable ... why doesn't this work???

2002-11-21 Thread -[ Rene Brehmer ]-
Hi Van Andel, Robert, Eh ... nope, that just made it worse ... Just going to restart windows and try again ... Apache and IE are totally screwed up now ... guess that's another way to kill WinXP... *s* Rene On Thu, 21 Nov 2002 15:21:50 -0600, you wrote about RE: [PHP] echo'ing array contents

Re: [PHP] echo'ing array contents through reference variable ... why doesn't this work???

2002-11-23 Thread -[ Rene Brehmer ]-
Hi @ Edwin, On Fri, 22 Nov 2002 12:34:35 +0900, you wrote about Re: [PHP] echo'ing array contents through reference variable ... why doesn't this work??? something that looked like this: This is my test code: $premieredag = array(2002-11-22,2002-11-29,2002-12-06,2002-12-18); $d20021122

Re: [PHP] echo'ing array contents through reference variable ... why doesn't this work???

2002-11-28 Thread -[ Rene Brehmer ]-
Hi Ernest E Vogelsinger, On Sat, 23 Nov 2002 17:07:50 +0100, you wrote about Re: [PHP] echo'ing array contents through reference variable ... why doesn't this work??? something that looked like this: At 16:50 23.11.2002, -[ Rene Brehmer ]- said: [snip

Re: [PHP] echo'ing array contents through reference variable

2002-11-28 Thread -[ Rene Brehmer ]-
Hi Tularis, Thanks ... it totally did the trick ... if only I've had the time to actually look at this before now ;-) ... thx Rene On Sat, 23 Nov 2002 19:20:02 +0100, you wrote about Re: [PHP] echo'ing array contents through reference variable something that looked like this: echo

Re: [PHP] How Do I install php on Apache 2.0

2002-11-29 Thread -[ Rene Brehmer ]-
Hi Adam Voigt, On 27 Nov 2002 11:44:49 -0500, you wrote about Re: [PHP] How Do I install php on Apache 2.0 something that looked like this: A. What does having Adobe installed matter? Where'd you get that?? B. Why are you trying to run 2.0? Apache 2.0 isn't even recommended for use with PHP on

Re: [PHP] First PHP

2002-11-29 Thread -[ Rene Brehmer ]-
Hi Khalid El-Kary, On Fri, 29 Nov 2002 14:18:15 +, you wrote about Re: [PHP] First PHP something that looked like this: hi, how about the manual? Works for me to learn it ... it's the only thing I've read on PHP besides the WebMonkey guide to get the Apache+PHP set up ... -- PHP General

Re: [PHP] JavaScript question

2003-12-24 Thread -{ Rene Brehmer }-
(very basic beginner). Robin 'Sparky' Kopetzky Black Mesa Computers/Internet Service Grants, NM 87020 -- Rene Brehmer aka Metalbunny http://metalbunny.net/ References, tools, and other useful stuff... -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

Re: [PHP] Using templates (Code User Interface)

2004-01-24 Thread -{ Rene Brehmer }-
interface files. I tried to use some template classes, but I did'nt like what I tired because some if statments are used inside the template. How can I prepare my code to be working in more that one template? Should I use some methodology like FuseBox.org Regards, Hamid Hossain -- Rene Brehmer aka

Re: [PHP] Re: Stupid newbie question = Why don't I need a ; after this line?

2004-01-27 Thread -{ Rene Brehmer }-
over some code. -- Rene Brehmer aka Metalbunny http://metalbunny.net/ References, tools, and other useful stuff... -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

  1   2   >