[PHP] a link in php generated mail

2008-10-03 Thread Sjef
Hallo, I have an link in a php generated email that does not work. I tried adding http:// but with no result. It says the link is blocked. I created the mail with html formatting. I use pear email. Is there anything I have to consider to make this work? Thanks, Sjef -- PHP General Mailing

RE: [PHP] recursive function problem

2006-12-07 Thread sjef janssen
No, I'm sure I didn't. My news server is incredibly slow, and I am (incredibly?) impatient, so I pushed the send button more than once ... Sorry about that! Sjef -Oorspronkelijk bericht- Van: Paul Scott [mailto:[EMAIL PROTECTED] Verzonden: donderdag 7 december 2006 14:50 Aa

[PHP] recursive function problem

2006-12-07 Thread Sjef
Hello! I wrote a recursive function, but when running the function appache stalls, the error log says: module mod_php4.c is already running, skipping Is this a bug, or am I doing something wrong? Thanxs, Sjef -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

[PHP] recursive function problem

2006-12-07 Thread Sjef
Hello! I wrote a recursive function, but when running the function appache stalls, the error log says: module mod_php4.c is already running, skipping Is this a bug, or am I doing something wrong? Thanxs, Sjef -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

[PHP] recursive function problem

2006-12-07 Thread Sjef
Hello! I wrote a recursive function, but when running the function appache stalls, the error log says: module mod_php4.c is already running, skipping Is this a bug, or am I doing something wrong? Thanxs, Sjef -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

Re: [PHP] returning to the same page after log in

2006-08-09 Thread Sjef
I think I solved the problem. I've set the action of the login form to $_SERVER['REQUEST_URI'] instead of $_SERVER['PHP_SELF']. It works fine. May not be the proper way but hey ... Sjef "Andrei" <[EMAIL PROTECTED]> schreef in bericht news:[EMAIL P

[PHP] returning to the same page after log in

2006-08-09 Thread Sjef
Hello all! This is a bit difficult to explain. On a site I am building I sometimes use the GET method to forward values to the next page. There are certain pages that you need to be logged in to to be able to see data. So you arrive at the page, you realize that you are not logged in, so you typ

Re: [PHP] Is this really a pdf?

2006-08-08 Thread Sjef
Thanxs very much guys! I do realize that it is not foolproof, but better than nothing. In my situation mime_content_type doesn't work, so I will have to settle for the other method. Sjef -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Is this really a pdf?

2006-08-07 Thread Sjef
Is it possible to recognize if a file for upload really is a pdf (like the function getimagesize retuns the file type of the image)? Thanxs, Sjef -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] design?

2006-08-07 Thread Sjef
Thanks, John. It's probably also a matter of how you name the classes. It needs to be a clear name that describes what it 'is'. Hence, the depot name. Anyway, indeed I have finished the concept of the app. Sjef ""John Wells"" <[EMAIL PROTECTED]> schreef

Re: [PHP] design?

2006-06-30 Thread Sjef
write cleaner code By the way: as always, I already exceded the 3 or 4 pages David mentioned, if only for the idea to add a 'placed' tag in the db. Sjef ""John Wells"" <[EMAIL PROTECTED]> schreef in bericht news:[EMAIL PROTECTED] > On 6/29/06, Sjef <

[PHP] design?

2006-06-29 Thread Sjef
that also deals with the Answers. Thanxs! Sjef -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] get key of array (key function sucks?)

2006-01-27 Thread Sjef
Hallo, I am adding a value to a session variable (an array). Then I want to place the key of the array in another session variable to keep it for later use (so I can return to the array to write data to it). The key function should work there, but it seems to be a bit strange. Imagine: $array

[PHP] Re: array of checkbox values

2006-01-12 Thread Sjef
Interesting way to solve the problem. I thought about checking whether the keys are present (if not the checkbox is set to "N".) I wil definitily try this option as well. Thxs all! Sjef "Al" <[EMAIL PROTECTED]> schreef in bericht news:[EMAIL PROTECTED] > Sjef Janss

[PHP] Re: array of checkbox values

2006-01-11 Thread Sjef
Would it be enough to set a key for each checkbox, for example explicitly say: checkbox[1] checkbox[2] checkbox[3] then a non checked box will have an empty string as a value, whereas the checked ones will have a value of 'Y'. Sjef "David Dorward" <[EMAIL PROTECTED]>

[PHP] array of checkbox values

2006-01-11 Thread Sjef Janssen
lue = "Y" Is there a way to, as it were, complete the array and have all values stored, even the "N" values? So that array index 2 has a value of "N", and array index 3 is "Y". Thxs Sjef -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: complex arrays

2006-01-05 Thread Sjef
Oeps, it's already complex to explain this. The array that needs to be created and read is looking like this $vArray = array('uses'=>'J', $_POST['vke']); Maybe that will clear up thing a (tiny) bit). Thanks again, Sjef ""Sjef Janssen"

[PHP] complex arrays

2006-01-05 Thread Sjef Janssen
;); print ("\n"); ?> I have problems reading the contents of the arrays. Especially reading the second array seems impossible. After all this I want to add the contents of the array to a Session variable to keep it in furthwer steps (of a wizard). I hope any of you can '