Re: [PHP] want to learn about zend

2007-09-27 Thread Tijnema
/opensource/library/os-php-zend1 Tijnema -- If this is a mailing list: DO NOT TOP POST! why?: http://www.caliburn.nl/topposting.html Vote for PHP Color Coding (aka Syntax Highlighting) in Gmail! - http://gpcc.tijnema.info -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

Re: [PHP] imagecreatefromgif fails for a valid image

2007-09-24 Thread Tijnema
an GIF image, it says GIF (GIF89 probably) if it's an JPEG image, it says something like ÿØÿà if it's an BMP image, it says BM (BM6) and if it's an PNG image, it says ‰PNG I hope this helps you.. Tijnema -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

Re: [PHP] php Login script issue

2007-09-16 Thread Tijnema
* FROM tablename WHERE userName='$userName' AND password = '$password') or die (mysql_error()); // You could also add some checks here with mysql_num_rows for example... if($rec=mysql_fetch_array($result)){ Tijnema -- If this is a mailing list: DO NOT TOP POST! why?: http://www.caliburn.nl

Re: [PHP] php5: capital I letters in func/class method names do not work with turkish locale in php5

2007-09-06 Thread Tijnema
difficult to develop a patch for this bug? Sincerely Well, only 1 hour later than your email, there has been posted a patch on the bug page that fixes it. Tijnema -- If this is a mailing list: DO NOT TOP POST! why?: http://www.caliburn.nl/topposting.html Vote for PHP Color Coding (aka Syntax

Re: [PHP] is this a bug?

2007-08-20 Thread Tijnema
variables etc. declared in it) will be added to the scope where the include is. This manual page should help you: http://www.php.net/manual/en/language.variables.scope.php Tijnema -- If this is a mailing list: DO NOT TOP POST! why?: http://www.caliburn.nl/topposting.html Vote for PHP Color Coding

Re: [PHP] is this a bug?

2007-08-20 Thread Tijnema
Morais Well, you're quite close, but you expect something different from the return... Like I said above. Tijnema ps. I don't really care about your english, but top posting is annoying. Read the site in my signature to know why. Also snipping irrelevant parts of the original message is important

Re: [PHP] php 5 and ms sql server express won't play nice !

2007-08-17 Thread Tijnema
if they work, because I never had any MS SQL server (MySQL rocks ;-)), but the second comment seems helpful. Tijnema [1] http://www.php.net/manual/en/function.mssql-connect.php -- If this is a mailing list: DO NOT TOP POST! why?: http://www.caliburn.nl/topposting.html Vote for PHP Color Coding

Re: [PHP] problem with require_once

2007-08-15 Thread Tijnema
is probably in your myclass.php file... Please show some relevant code so that we can help. Tijnema -- Vote for PHP Color Coding in Gmail! - http://gpcc.tijnema.info -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Friday morning brain farts....

2007-08-13 Thread Tijnema
On 8/13/07, tedd [EMAIL PROTECTED] wrote: At 4:54 PM +0200 8/11/07, Tijnema wrote: On 8/11/07, tedd [EMAIL PROTECTED] wrote: At 7:21 PM +0200 8/10/07, Tijnema wrote: On 8/10/07, Robert Cummings [EMAIL PROTECTED] wrote: if( !isset( $argv[1] ) || !isset( $argv[2] ) || !isset

Re: [PHP] Server Process

2007-08-13 Thread Tijnema
with access through sockets, the program would run forever, but doesn't need to startup each time. Tijnema -- Vote for PHP Color Coding in Gmail! - http://gpcc.tijnema.info -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] apache content negotiation and $_GET

2007-08-13 Thread Tijnema
? thanks, Per Jessen, Zurich This has nothing to do with PHP, and there's only a very little chance you get a successfull result here. Your Apache type-map probably just doesn't take the $_GET variables with it, but don't ask me how to fix ;) I can provide a PHP solution for it ;) Tijnema -- Vote

Re: [PHP] Generating executable code

2007-08-13 Thread Tijnema
, Chris Well, that's exactly what eval does, why isn't it ideal for you? Tijnema -- Vote for PHP Color Coding in Gmail! - http://gpcc.tijnema.info -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] manual vs. meta refresh

2007-08-12 Thread Tijnema
then need to re-direct back to the URL *without* the GET parameter from_meta_tag=1 so that their refresh button would not be going to that URL with from_meta_tag in it. Tijnema -- Vote for PHP Color Coding in Gmail! - http://gpcc.tijnema.info -- PHP General Mailing List (http://www.php.net

Re: [PHP] convert (windows-1250) to (utf-8)

2007-08-12 Thread Tijnema
On 8/12/07, Alain Roger [EMAIL PROTECTED] wrote: and why not : $out = iconv('windows-1250','UTF-8', $in); ??? Alain Did you test if that works? I doubt it, as windows-1250 isn't listed on the homepage of libiconv: http://www.gnu.org/software/libiconv/ Tijnema On 8/12/07, brian [EMAIL

Re: [PHP] very strange behavior.... incomplete query performed

2007-08-12 Thread Tijnema
timeout, but these values are a lot higher.. :) Tijnema -- Vote for PHP Color Coding in Gmail! - http://gpcc.tijnema.info -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] What's is the needed configuration to enable SOAP?

2007-08-12 Thread Tijnema
127.0.0.1/localhost to connect to, instead of the server name/ip Also keep in mind that you can not always connect through the external IP of a server, but that you need to use internal IP sometimes when they are in LAN or such.. Tijnema -- Vote for PHP Color Coding in Gmail! - http

Re: [PHP] Concatenation vs. Interpolation

2007-08-11 Thread Tijnema
]-$time[5]); ? Tijnema -- Vote for PHP Color Coding in Gmail! - http://gpcc.tijnema.info -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] I know this is not easy and I'm not stupid but...

2007-08-11 Thread Tijnema
with your code :P If I execute your code with the -n option, I get same results. When I put them in a PHP file like this: ?php $var = 'bla'; var_dump('0' == $var); $var = 'bla'; var_dump(0 == $var); ? I get : bool(false) bool(false) and you probably also ;) Tijnema Jan

Re: [PHP] Friday morning brain farts....

2007-08-11 Thread Tijnema
On 8/11/07, tedd [EMAIL PROTECTED] wrote: At 7:21 PM +0200 8/10/07, Tijnema wrote: On 8/10/07, Robert Cummings [EMAIL PROTECTED] wrote: if( !isset( $argv[1] ) || !isset( $argv[2] ) || !isset( $argv[3] ) ) if(!isset($argv[1],$argv[2],$argv[3])) // Bit shorter ;) But a bit harder

Re: [PHP] preg_match_all to match img tags

2007-08-11 Thread Tijnema
bracket in the img tag, but that's almost never going to happen in reailty. Oops that should be: preg_match_all('/img[^]*/Ui', $input, $matches); -- Richard Heyes img src=image.jpg Your script doesn't catch above ;) Tijnema -- Vote for PHP Color Coding in Gmail! - http://gpcc.tijnema.info

Re: [PHP] preg_match_all to match img tags

2007-08-11 Thread Tijnema
On 8/11/07, Richard Heyes [EMAIL PROTECTED] wrote: img src=image.jpg Your script doesn't catch above ;) So don't write HTML like that. Depends where the HTML is coming from, it might be user input Tijnema -- Vote for PHP Color Coding in Gmail! - http://gpcc.tijnema.info -- PHP

Re: [PHP] preg_match_all to match img tags

2007-08-11 Thread Tijnema
On 8/11/07, Stut [EMAIL PROTECTED] wrote: Tijnema wrote: On 8/11/07, Richard Heyes [EMAIL PROTECTED] wrote: Richard Heyes wrote: How can i match an image tag correctly so it does not cause any issues with how the user adds the image. preg_match_all('/img[^]*/Ui'); Off the top of my

Re: [PHP] convert (windows-1250) to (utf-8)

2007-08-11 Thread Tijnema
, but this might help you: http://www.php.net/manual/en/function.mb-convert-encoding.php Tijnema -- Vote for PHP Color Coding in Gmail! - http://gpcc.tijnema.info -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Getting a 'newline' out of a string

2007-08-10 Thread Tijnema
(carriage return followed by a newline) Unix: \n (newline) Mac: \r (carriage return) Of course it is possible to use other line endings on those OSes, but these are the default. Tijnema -- Vote for PHP Color Coding in Gmail! - http://gpcc.tijnema.info -- PHP General Mailing List (http://www.php.net

Re: [PHP] Friday morning brain farts....

2007-08-10 Thread Tijnema
( $email, $subject, $content ); ? Cheers, Rob. -- And have a nice day! Tijnema -- Vote for PHP Color Coding in Gmail! - http://gpcc.tijnema.info -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Getting a 'newline' out of a string

2007-08-10 Thread Tijnema
); Tijnema -- Vote for PHP Color Coding in Gmail! - http://gpcc.tijnema.info -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Friday morning brain farts....

2007-08-10 Thread Tijnema
On 8/10/07, Robert Cummings [EMAIL PROTECTED] wrote: On Fri, 2007-08-10 at 19:21 +0200, Tijnema wrote: On 8/10/07, Robert Cummings [EMAIL PROTECTED] wrote: On Fri, 2007-08-10 at 11:48 -0400, Daniel Brown wrote: On 8/10/07, Stut [EMAIL PROTECTED] wrote: I get an email from each

Re: [PHP] Running a server process

2007-08-10 Thread Tijnema
it as a service from source code, but as I mentioned in my first post, and you mentioned here too, you also need to add support for a socket server in your program. Sockets in PHP are easy ;) Tijnema -- Vote for PHP Color Coding in Gmail! - http://gpcc.tijnema.info -- PHP General Mailing List

Re: [PHP] Running a server process

2007-08-10 Thread Tijnema
On 8/10/07, Stut [EMAIL PROTECTED] wrote: Tijnema wrote: On 8/10/07, Richard Heyes [EMAIL PROTECTED] wrote: That is it works with just me using the site. I am wondering how this would effect performance if say 500 people were executing this php function around the same time

Re: [PHP] manual vs. meta refresh

2007-08-10 Thread Tijnema
before. meta http-equiv=refresh content=1;http://www.domain.com/dir/site.php?foo=barmeta_refresh=1; and when the new page load, check whether the value is the same as the previous page load (user has uses refresh), or it is +1 (redirected through META) Tijnema -- Vote for PHP Color Coding in Gmail

Re: [PHP] php 4.4.7 make install with pear causes zend freeing errors

2007-08-10 Thread Tijnema
of errors. Thanks in advance for any pointers you can provide. Thanks! JohnM -- What are you doing with PHP4??? Go PHP5!! http://www.gophp5.org Tijnema -- Vote for PHP Color Coding in Gmail! - http://gpcc.tijnema.info -- PHP General Mailing List (http://www.php.net/) To unsubscribe

Re: [PHP] Running a server process

2007-08-10 Thread Tijnema
On 8/10/07, Stut [EMAIL PROTECTED] wrote: Tijnema wrote: On 8/10/07, Stut [EMAIL PROTECTED] wrote: Tijnema wrote: On 8/10/07, Richard Heyes [EMAIL PROTECTED] wrote: That is it works with just me using the site. I am wondering how this would effect performance if say 500 people were

Re: [PHP] manual vs. meta refresh

2007-08-10 Thread Tijnema
F5, it will stil think the user is redirected through the META tag... Tijnema -- Vote for PHP Color Coding in Gmail! - http://gpcc.tijnema.info -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Running a server process

2007-08-10 Thread Tijnema
On 8/10/07, Stut [EMAIL PROTECTED] wrote: Tijnema wrote: On 8/10/07, Stut [EMAIL PROTECTED] wrote: Tijnema wrote: On 8/10/07, Stut [EMAIL PROTECTED] wrote: Tijnema wrote: On 8/10/07, Richard Heyes [EMAIL PROTECTED] wrote: That is it works with just me using the site. I am wondering

Re: [PHP] Running a server process

2007-08-10 Thread Tijnema
to the program with a socket. Tijnema -- Vote for PHP Color Coding in Gmail! - http://gpcc.tijnema.info -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] manual vs. meta refresh

2007-08-10 Thread Tijnema
, but should work Do you guys read other replies first before making a reply yourself? You're the third one making the same reply... Tijnema -- Vote for PHP Color Coding in Gmail! - http://gpcc.tijnema.info -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

Re: [PHP] mail problem - deadline!!!!!

2007-08-07 Thread Tijnema
, if not, then you can come back to this list with that small piece of code. Tijnema -- Vote for PHP Color Coding in Gmail! - http://gpcc.tijnema.info -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] javascript in head or in body ?

2007-08-07 Thread Tijnema
=' + val ; } /script TIA, Cor Uhh, do you know which list this is? Tijnema -- Vote for PHP Color Coding in Gmail! - http://gpcc.tijnema.info -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] javascript in head or in body ?

2007-08-07 Thread Tijnema
On 8/7/07, Robert Cummings [EMAIL PROTECTED] wrote: On Tue, 2007-08-07 at 21:24 +0200, Tijnema wrote: On 8/7/07, C.R.Vegelin [EMAIL PROTECTED] wrote: Are there any rules when to include javascript in head or in body ? For example, script type=text/javascript function reload(form

Re: [PHP] javascript in head or in body ?

2007-08-07 Thread Tijnema
onload=bodyload();, you need to place it inside head, as it isn't loaded if you put it in body. Some browsers will still run the javascript code, however it is not recommended. Tijnema -- Vote for PHP Color Coding in Gmail! - http://gpcc.tijnema.info -- PHP General Mailing List (http

Re: [PHP] javascript in head or in body ?

2007-08-07 Thread Tijnema
On 8/7/07, Greg Donald [EMAIL PROTECTED] wrote: On 8/7/07, Tijnema [EMAIL PROTECTED] wrote: Uhh, do you know which list this is? I give up.. Is it the one where I get as many [OT] labeled emails as I do on-topic ones? People have been asking basic html questions here for (over?) a decade

Re: [PHP] Problems in php

2007-08-07 Thread Tijnema
. The other files you tried to test, do you run them through localhost too? Tijnema -- Vote for PHP Color Coding in Gmail! - http://gpcc.tijnema.info -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Check for well formed html

2007-08-05 Thread Tijnema
at Example 1687 on the manual page for preg_match_all, I think you can use it with a little modification :) Tijnema -- Vote for PHP Color Coding in Gmail! - http://gpcc.tijnema.info -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Problem with php mail

2007-08-05 Thread Tijnema
There are a lot of things that can make emails go to spam, as already noted the headers and the size of the message, but also a wrong title, or wrong From: address (domain email != domain mail server) can make the message go to spam Tijnema -- Vote for PHP Color Coding in Gmail! - http

Re: [PHP] Rejecting File Upload

2007-08-05 Thread Tijnema
you need to have knowledge of ASM and Reverse Engineering for that, which is not easy, but once you know it, it can be quite easy to do it too ( I could do it in less than 5 mins ) Tijnema -- Vote for PHP Color Coding in Gmail! - http://gpcc.tijnema.info -- PHP General Mailing List (http

Re: [PHP] Wierd error with xml_set_element_handler()

2007-08-05 Thread Tijnema
($xml_parser); And also before above functions? Any ideas? I've tried the line with single quotes, double quotes and no quotes, and various other odd attempts to figure it out. I'm totally baffled. Many Thanks (in advance), Bruce Steinback let me (us) know if you fixed it. Tijnema

Re: [PHP] Setting group sticky bit on directory with chmod()

2007-08-02 Thread Tijnema
on AFAIK. Tijnema -- Vote for PHP Color Coding in Gmail! - http://gpcc.tijnema.info -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Numbers, Numbers everywhere! Need some Dollar help.

2007-08-02 Thread Tijnema
, and anything else you think necessary. If there are no cents, then you can issue a confirmation box. So, my vote is to handle it within javascript, as it should not be too difficult. -B What about the european format? Like this: $1.234.567,89 Tijnema -- Vote for PHP Color Coding in Gmail

Re: [PHP] Which PHP-Editor to use?

2007-08-02 Thread Tijnema
interface through FTP. It allows me to easily switch between my different sites around the world :) Apart from that, color coding is good, and supports auto tabbing :) Tijnema -- Vote for PHP Color Coding in Gmail! - http://gpcc.tijnema.info -- PHP General Mailing List (http://www.php.net

Re: [PHP] Re: Pirate PHP books online?

2007-07-31 Thread Tijnema
of each book. I should be so lucky. David Powers Yes, and the president gets a lot more Tijnema -- Vote for PHP Color Coding in Gmail! - http://gpcc.tijnema.info -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] audio recorder

2007-07-30 Thread Tijnema
would recommend you looking for some software that does record from the microphone, and use it through system, exec, ``, ... functions. Tijnema -- Vote for PHP Color Coding in Gmail! - http://gpcc.tijnema.info -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

Re: [PHP] audio recorder

2007-07-30 Thread Tijnema
On 7/31/07, John Pillion [EMAIL PROTECTED] wrote: -Original Message- From: Tijnema [mailto:[EMAIL PROTECTED] Sent: Monday, July 30, 2007 4:25 PM To: John Pillion Cc: php-general@lists.php.net Subject: Re: [PHP] audio recorder On 7/31/07, John Pillion [EMAIL PROTECTED] wrote

Re: [PHP] Re: Pirate PHP books online?

2007-07-30 Thread Tijnema
as the whole USA Tijnema -- Vote for PHP Color Coding in Gmail! - http://gpcc.tijnema.info -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: Pirate PHP books online? - ENOUGH ALREADY

2007-07-30 Thread Tijnema
0808 Mobile : 0411 132 075 I agree with 5000% with you, this is a PHP list, and of course threads get OT sometimes, but this is really too much OT, and there's no solution for the problem ;) Tijnema - Making The Web Work The Web Hub

Re: [PHP] Rules of Engagement

2007-07-28 Thread Tijnema
worser, as then email sent to a user with a vacation message, will send a message back to the list, which will be addressed to everyone on the list :P Tijnema -- Vote for PHP Color Coding in Gmail! - http://gpcc.tijnema.info -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit

Re: [PHP] Re: The Official OT Name Tedd's Grandson Thread

2007-07-27 Thread Tijnema
to the same thread, it adds the message, and keeps the original title. Which is Title for the OP, and [PHP] Title for all other users. Tijnema -- Vote for PHP Color Coding in Gmail! - http://gpcc.tijnema.info -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

Re: [PHP] Re: The Official OT Name Tedd's Grandson Thread

2007-07-27 Thread Tijnema
On 7/27/07, Richard Lynch [EMAIL PROTECTED] wrote: On Fri, July 27, 2007 7:35 am, Tijnema wrote: It's quite logical that it is done this way, if you understand how a mailing lists works ;) When you send a email to the mailing list, you send it without [PHP], and so Gmail thinks that's

Re: [PHP] Is it possible to stop an image from being cached?

2007-07-26 Thread Tijnema
, 26 Jul 1997 05:00:00 GMT); // Date in the past } Tijnema -- Vote for PHP Color Coding in Gmail! - http://gpcc.tijnema.info -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Is it possible to stop an image from being cached?

2007-07-26 Thread Tijnema
=image.jpgarandomstringhereeachtime Tijnema -- Vote for PHP Color Coding in Gmail! - http://gpcc.tijnema.info -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: Pirate PHP books online?

2007-07-26 Thread Tijnema
, good one stut! Tijnema -- Vote for PHP Color Coding in Gmail! - http://gpcc.tijnema.info -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: Pirate PHP books online?

2007-07-26 Thread Tijnema
On 7/26/07, Daniel Brown [EMAIL PROTECTED] wrote: On 7/26/07, Tijnema [EMAIL PROTECTED] wrote: On 7/26/07, Stut [EMAIL PROTECTED] wrote: Man-wai Chang wrote: You could open a sample book in bookstores, scan the chapters to decide whether you are gonna buy it. Not even slightly

Re: [PHP] Is it possible to stop an image from being cached?

2007-07-26 Thread Tijnema
for this page, and will remove it afterwards. Tijnema Tijnema [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] On 7/27/07, brian [EMAIL PROTECTED] wrote: Tijnema wrote: On 7/26/07, Dan [EMAIL PROTECTED] wrote: I have a situation where there is a single image let's call it somebody.jpg

Re: [PHP] Re: The Official OT Name Tedd's Grandson Thread

2007-07-26 Thread Tijnema
with [PHP] or Re: [PHP] Tijnema -- Vote for PHP Color Coding in Gmail! - http://gpcc.tijnema.info -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Is it possible to stop an image from being cached?

2007-07-26 Thread Tijnema
On 7/27/07, brian [EMAIL PROTECTED] wrote: Tijnema wrote: On 7/26/07, Dan [EMAIL PROTECTED] wrote: I have a situation where there is a single image let's call it somebody.jpg. I want to be able to dynamicly create this image using php, basicilly I have PHP set to handle .jpg files also

Re: [PHP] Re: header( 'refresh' ), form data, and IE

2007-07-25 Thread Tijnema
: [EMAIL PROTECTED] website: http://www.nusconsulting.com.au Viva Danielism! -- Daniel P. Brown [office] (570-) 587-7080 Ext. 272 [mobile] (570-) 766-8107 You Dans driving me insine with all those dans :P Tijnema -- Vote for PHP Color Coding in Gmail! - http://gpcc.tijnema.info -- PHP

Re: [PHP] Re: header( 'refresh' ), form data, and IE

2007-07-25 Thread Tijnema
On 7/25/07, Daniel Brown [EMAIL PROTECTED] wrote: On 7/25/07, Tijnema [EMAIL PROTECTED] wrote: You Dans driving me insine with all those dans :P Tijnema -- Vote for PHP Color Coding in Gmail! - http://gpcc.tijnema.info Be jealous and afraid. It's not just a name it's a race

Re: [PHP] Re: Pirate PHP books online?

2007-07-24 Thread Tijnema
On 7/24/07, Michelle Konzack [EMAIL PROTECTED] wrote: Am 2007-07-19 19:41:32, schrieb Tijnema: One word: Useless! The watermark can be easily removed, and the guy who puts in on the net will simply remove it, and can't be traced :) Not realy except you know the WHOLE original text. I

Re: [PHP] Re: header( 'refresh' ), form data, and IE

2007-07-24 Thread Tijnema
in error reporting level, then this gives some warnings about undefined variables! Tijnema -- Vote for PHP Color Coding in Gmail! - http://gpcc.tijnema.info -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] How can I install GD support for a php rpm

2007-07-24 Thread Tijnema
. Build only the GD module from the PHP package, and add that to the modules to load in php.ini Tijnema -- Vote for PHP Color Coding in Gmail! - http://gpcc.tijnema.info -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] session_decode from session handler

2007-07-22 Thread Tijnema
thread about your problem, it might be related, but not the same. Tijnema cheers, Jeffery On Friday 20 July 2007 08:25, Ryan Graciano wrote: PHP passed $data to my write($id) function, and then I wrote it to the database. In the code below, I have retrieved it from the database. I

Re: [PHP] Bundled GD compiling?

2007-07-22 Thread Tijnema
it will be allways the same libpng for GD and PHP :) Tijnema -- Vote for PHP Color Coding in Gmail! - http://gpcc.tijnema.info -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: Re: Pirate PHP books online?

2007-07-22 Thread Tijnema
of the warez, stop writing the books ;) Tijnema Greetings Michelle Konzack Systemadministrator Tamay Dogan Network Debian GNU/Linux Consultant -- Vote for PHP Color Coding in Gmail! - http://gpcc.tijnema.info -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit

Re: [PHP] Re: Re: Pirate PHP books online?

2007-07-22 Thread Tijnema
On 7/22/07, Dotan Cohen [EMAIL PROTECTED] wrote: On 22/07/07, Tijnema [EMAIL PROTECTED] wrote: Ebooks are free (in the name of warez). Now to not start this thread all over again, but, Authors, if you think you can't make enough money because of the warez, stop writing the books ;) For you

Re: [PHP] Pirate PHP books online?

2007-07-20 Thread Tijnema
is that there are those who _prefer_ the electronic version to the dead trees. At least, I do. Dotan Cohen Old paper can be recycled, lost energy from computers can't ;) Tijnema -- Vote for PHP Color Coding in Gmail! - http://gpcc.tijnema.info -- PHP General Mailing List (http://www.php.net/) To unsubscribe

Re: [PHP] Pirate PHP books online?

2007-07-20 Thread Tijnema
On 7/21/07, Dotan Cohen [EMAIL PROTECTED] wrote: On 20/07/07, Tijnema [EMAIL PROTECTED] wrote: An additional benefit is that there are those who _prefer_ the electronic version to the dead trees. At least, I do. Dotan Cohen Old paper can be recycled, lost energy from computers can't

Re: [PHP] Pirate PHP books online?

2007-07-19 Thread Tijnema
the piracy, but does give traceability should you wish to pursue the pirate. Regards, Austin. One word: Useless! The watermark can be easily removed, and the guy who puts in on the net will simply remove it, and can't be traced :) Tijnema -- Vote for PHP Color Coding in Gmail! - http

Re: [PHP] repetition of tedious references

2007-07-19 Thread Tijnema
that might help. Anyone see a problem with it? Cheers, tedd -- Yes,what if the key does exists, but is empty? Then it should fallback to the default value, which is exactly what the OP script did, and what yours does too when you add != statement, or empty(). Tijnema -- Vote for PHP Color

Re: [PHP] session_decode from session handler

2007-07-19 Thread Tijnema
serialized data, you can simply call unserialize instead of session_decode. Tijnema -- Vote for PHP Color Coding in Gmail! - http://gpcc.tijnema.info -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: Encrypted Mail

2007-07-18 Thread Tijnema
?) Tijnema -- Vote for PHP Color Coding in Gmail! - http://gpcc.tijnema.info -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: Pirate PHP books online?

2007-07-18 Thread Tijnema
Professionals PHP Solutions Dynamic Web Design Made Easy Core Web Application Development with PHP and MySQL How to Do Everything with PHP MySQL PHP Manual Web Application Development With Php4 OReilly PHP Cookbook 2nd Edition Aug2006 PHP5 and MySQL Bible (2004) need one? Tijnema -- Vote for PHP

Re: [PHP] Newbie seeks urgent help

2007-07-13 Thread Tijnema
; clandestine advertising ^ :-P Tijnema -- Vote for PHP Color Coding in Gmail! - http://gpcc.tijnema.info -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Installation problem

2007-07-13 Thread Tijnema
if I ping pear.php.net. Note that this isn't a fix, but only a workaround, and the IP of the pear server might change someday and then your stuck with the old IP. So really try to fix the DNS problem.. Tijnema -- Vote for PHP Color Coding in Gmail! - http://gpcc.tijnema.info -- PHP General Mailing

Re: [PHP] Re: Announcing Xaja, a PHP Reverse Ajax framework

2007-07-13 Thread Tijnema
more then one window open, which means another connection. So you end up to have a maximum of about 2000 visiters at same time for each site. Tijnema On 7/13/07, Robert Cummings [EMAIL PROTECTED] wrote: On Fri, 2007-07-13 at 14:59 -0400, Nathan Nobbe wrote: On 7/13/07, Robert Cummings

Re: [PHP] Social Networking Sites OT

2007-07-13 Thread Tijnema
on the sites I saw were only trying to get the most friends, most friends were even people they didn't know anything about. For me, No join, No Social Networking Friends, no spam :) Tijnema -- Vote for PHP Color Coding in Gmail! - http://gpcc.tijnema.info -- PHP General Mailing List (http://www.php.net

Re: [PHP] mail function from and reply to address problem

2007-07-13 Thread Tijnema
thing. So looks like thats the culprit. I'll have to comb through the sendmail configuration and find out if I can reverse this behavior. Sendmail has a usenet newsgroup (comp.mail.sendmail), where you might be able to find someone that can help you :) Tijnema On 7/13/07, Tanner Postert [EMAIL

Re: Re[2]: [PHP] Newbie seeks urgent help

2007-07-13 Thread Tijnema
not line 14, but you probably snipped some stuff out of it ;) Tijnema -- Vote for PHP Color Coding in Gmail! - http://gpcc.tijnema.info -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: Re[4]: [PHP] Newbie seeks urgent help

2007-07-13 Thread Tijnema
On 7/14/07, Luc [EMAIL PROTECTED] wrote: Hello Tijnema, Friday, July 13, 2007, 10:09:05 PM, you wrote: You're using a ' here, which ends the string. Use one of these: $websitetitle = John Doe's Site; OR $websitetitle = 'John Doe\'s Site'; Just a matter of preference ;) Thanks Tijnema

Re: [PHP] Re: PHP Brain Teasers

2007-07-12 Thread Tijnema
this week for some reason. -- Daniel P. Brown You can probably remember the good old time of being a child and having holiday ;) Tijnema -- Vote for PHP Color Coding in Gmail! - http://gpcc.tijnema.info -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

Re: [PHP] Re: PHP Brain Teasers

2007-07-12 Thread Tijnema
On 7/12/07, Daniel Brown [EMAIL PROTECTED] wrote: On 7/12/07, Tijnema [EMAIL PROTECTED] wrote: You can probably remember the good old time of being a child and having holiday ;) Tijnema -- Vote for PHP Color Coding in Gmail! - http://gpcc.tijnema.info Don't rub it in, Tijnema ;-P

Re: [PHP] Re: PHP Brain Teasers

2007-07-12 Thread Tijnema
entries in this thread, entertaining though it is. :-) jon The same fault is made over and over again ;) as the fish egg was earlier (as noted here) Your code should be this: $a = array('Chicken','Chicken egg'); echo The . $a[array_rand($a)] . comes first.; Tijnema -- Vote for PHP Color

Re: [PHP] system() call in PHP5 on win2003

2007-07-10 Thread Tijnema
tried giving read/execute permission to everyone, still no help. In our configuation, the safe mode is off. Any clue? Thanks in advance. Xiaogang Are you sure PHP does actually read the config file? Check if safe_mode is really off using phpinfo(); like this: ?php phpinfo(); ? Tijnema -- Vote

Re: [PHP] Another simple question (Probably)

2007-07-10 Thread Tijnema
to submit any date through the form. I'm sure I just have something messed up in my mktime, or in the way I'm grabbing the variable. Thanks for looking! -- Jason Pruim All weird dates here :P, seems to be no relation to any Unix/PHP things ;) Tijnema -- Vote for PHP Color Coding in Gmail! - http

Re: [PHP] Re: Simple PHP setting arrays with keys question

2007-07-10 Thread Tijnema
: $products[$value['productName']] = $value['actualValue']; OR $products[] = array( $value['productName'] = $value['actualValue'] ); But these are not the same... -- Jim Lucas This one is: $products += array( $value['productName'] = $value['actualValue'] ); :) Tijnema -- Vote for PHP

Re: [PHP] Re: Simple PHP setting arrays with keys question

2007-07-10 Thread Tijnema
On 7/10/07, Jim Lucas [EMAIL PROTECTED] wrote: Tijnema wrote: On 7/10/07, Jim Lucas [EMAIL PROTECTED] wrote: Fredrik Thunberg wrote: Dan skrev: Oh yeah, the problem isn't that I'm using - instead of =. Well that was a problem but I fixed that and it's still not working. - Dan

Re: [PHP] Where does PHP look for php.ini??

2007-07-09 Thread Tijnema
On 7/8/07, Mario Guenterberg [EMAIL PROTECTED] wrote: On Sat, Jul 07, 2007 at 02:08:21AM +0200, Tijnema wrote: Hi, I just noted that my php (CLI and Apache2 SAPI) doesn't read my php.ini in /etc I have compiled php with --prefix=/usr, and my /usr/etc is symlinked to /etc

Re: [PHP] Another simple question (Probably)

2007-07-09 Thread Tijnema
find about 9 dec 2006: 9 December, 2006 - Shuttle Discovery launches on the STS-116 mission at 8:45 P.M., the first night launch in 4 years (STS-113 being the last). Tijnema -- Vote for PHP Color Coding in Gmail! - http://gpcc.tijnema.info -- PHP General Mailing List (http://www.php.net

Re: [PHP] Another simple question (Probably)

2007-07-09 Thread Tijnema
On 7/9/07, Daniel Brown [EMAIL PROTECTED] wrote: On 7/9/07, Tijnema [EMAIL PROTECTED] wrote: On 7/9/07, Daniel Brown [EMAIL PROTECTED] wrote: On 7/9/07, Shafiq Rehman [EMAIL PROTECTED] wrote: Hi, correct syntax for mktime is mktime( int hour, int minute, int second, int month

Re: [PHP] Where does PHP look for php.ini??

2007-07-09 Thread Tijnema
On 7/9/07, Mario Guenterberg [EMAIL PROTECTED] wrote: On Mon, Jul 09, 2007 at 05:16:20PM +0200, Tijnema wrote: I've build my own Linux, so good to know how to change it :) Tijnema Ahh, a linux from scratch user, eh? :-) If you need it or want some usefull input, I have very usefull build

Re: [PHP] Where does PHP look for php.ini??

2007-07-09 Thread Tijnema
On 7/9/07, Mario Guenterberg [EMAIL PROTECTED] wrote: On Mon, Jul 09, 2007 at 10:38:24PM +0200, Tijnema wrote: On 7/9/07, Mario Guenterberg [EMAIL PROTECTED] wrote: On Mon, Jul 09, 2007 at 05:16:20PM +0200, Tijnema wrote: I've build my own Linux, so good to know how to change

Re: [PHP] About DOM function in PHP

2007-07-08 Thread Tijnema
for DOMDocument $doc = new DOMDocument(); What's the problem? ** Which PHP version are you using? from the manual[1]: The DOM extension allows you to operate on XML documents through the DOM API with PHP 5. For PHP 4, use DOM XML. Tijnema [1] http://www.php.net/manual/en/ref.dom.php -- Vote

  1   2   3   4   5   6   7   8   >