Re: [PHP] Re: What does mean?

2007-05-01 Thread Tijnema !
I doubt Microsoft develops an editor that I could use on my Linux system for this... Cheers, Mattias You could use a silly editor from Microsoft, and then run it using Wine. Tijnema -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Sending the results of a query without using a file

2007-05-02 Thread Tijnema !
functions to clean the outout buffer and then send your headers and data: http://www.php.net/manual/en/ref.outcontrol.php Regards, Clive. I don't think that you will need output buffering, most functions allow you (or only) return values. Tijnema -- PHP General Mailing List (http://www.php.net

Re: [PHP] problem with shared object file

2007-05-02 Thread Tijnema !
On 5/3/07, Richard Lynch [EMAIL PROTECTED] wrote: On Sat, April 28, 2007 6:15 pm, Tijnema ! wrote: You have exactly the same problem as i have. My shared hosting has safe_mode off en dl on, so i could load them :) But i don't have access to write to the php.ini file. Maybe we should create

Re: [PHP] excel macro into php

2007-05-03 Thread Tijnema !
, or comment your own macro in english so that people can understand it. Tijnema -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] excel macro into php

2007-05-03 Thread Tijnema !
On 5/3/07, Daniel Brown [EMAIL PROTECTED] wrote: Sie nicht auch sprechen Spanischen, Tij? Nein, aber mein deutsch ist also nicht gut ;) Sprechen sie Spanischen Daniel?\ Tijnema On 5/3/07, Tijnema ! [EMAIL PROTECTED] wrote: On 5/2/07, Anton Krall [EMAIL PROTECTED] wrote: Guys.. I

Re: [PHP] excel macro into php

2007-05-03 Thread Tijnema !
demais Portuguese И немного русский язык Russian So can you read all those languages? :P Tijnema snip

Re: [PHP] Script feedback: insert string into another string

2007-05-03 Thread Tijnema !
I owe you and Tijnema a beer! Have a great day/night! Cheers, Micky I'm sorry, you have to wait another 9 months, because only than i can legally drink a beer :) (than i will be 16 :) ) Tijnema -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

Re: [PHP] passing GET via include

2007-05-04 Thread Tijnema !
$message=Hello\n; echo $message; ? --- Regards, Oliver Actually, it will be this: ?php ? ?php $message=Hello\n; ? ?php echo $message; ? As you could, for example, include a HTML document :) Tijnema -- PHP General

Re: [PHP] Using timezones

2007-05-04 Thread Tijnema !
(and whole GB) uses DST, so that might have affect the real time ... Tijnema -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] mail() only working with php-cli

2007-05-05 Thread Tijnema !
are exactly the same build? And you could try to set error reporting level to E_ALL, maybe there's a warning generated that's hidden now because of a lower reporting level. Tijnema -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Why create_element function always return false?

2007-05-05 Thread Tijnema !
here: http://www.php.net/manual/en/function.dom-domdocument-createelement.php Tijnema -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] mail() only working with php-cli

2007-05-06 Thread Tijnema !
on and then try to access the sendmail binary. Tijnema -Original Message- From: Oliver Block [mailto:[EMAIL PROTECTED] Sent: Saturday, May 05, 2007 23:58 To: php-general@lists.php.net Cc: Andy B. Subject: Re: [PHP] mail() only working with php-cli Hello Andy, did you take a look

Re: [PHP] Removing commas from number

2007-05-06 Thread Tijnema !
and end. so above could also be preg_replace('%\D%','',$str); I use % nearly allways, because i like it, and it isn't used a lot. / might be used in paths and can get confusing when \ also used. Tijnema -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

Re: [PHP] Making code public -- What steps to take? GPL?

2007-05-13 Thread Tijnema !
, don't worry too much about the license, just put your name on top of the code, and some other nonsense, like: You're allowed to use this code, as long as you leave above lines intact., where above your credit is listed of course. Tijnema On 5/13/07, Micky Hulse [EMAIL PROTECTED] wrote: Micky

Re: [PHP] php5 include() problem

2007-05-13 Thread Tijnema !
? Or is there PHP code in the cgi file? If you want the first, you should look at exec() or system() or such. If there's PHP code, there's no sense in passing variables to the CGI script, and if you remove the variables it will work. Tijnema -- PHP General Mailing List (http://www.php.net

Re: [PHP] RE: Bounty

2007-05-16 Thread Tijnema !
On 5/15/07, Brad Sumrall [EMAIL PROTECTED] wrote: Ok, maybe most of my fun will come from schmucks! Hehehehe 75.34.61.72 from Baltimore is already giving it a whack!!! Hehehehehe Ok, this may be a fun night! Where are the list administrators to ban this guy?? -- PHP General Mailing

Re: [PHP] mime type over http post?

2007-05-16 Thread Tijnema !
another header, you could analyze the headers sent to and from with for example a network sniffer. Or you just connect to the protocol directly with programs like putty or telnet. Tijnema You use PHP to create the header for the page request, but you need to study HTTP documentation to understand

Re: [PHP] Confused about how exactly to output image using imagepng function

2007-05-17 Thread Tijnema !
echo 'img src=image.php height=' . $height . ' width=' . $width .' alt=captcha /' . \n; Tijnema -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Can't link image directory?

2007-05-18 Thread Tijnema !
. Tijnema -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Can't link image directory?

2007-05-18 Thread Tijnema !
file:// in your link? You're using a webserver to display the contents, but file:// links to files on the local hard drive. Unless the server is running on the same machine you're visiting the site with, it will fail to point to the right file. Tijnema ps. Please don't top post. On 5/18/07

Re: [PHP] Re: Download speed limit

2007-05-18 Thread Tijnema !
, but I would like to limit at the speed of the parameter. Is there a way to do this? Thanks, Rangel Will this mean i can set my ?speed= Excellent! Yeah, that's nice, you limit it, but a little bit smart guy can set it to whatever he/she wants :) Tijnema

Re: [PHP] RE: Bounty

2007-05-18 Thread Tijnema !
On 5/16/07, Jay Blanchard [EMAIL PROTECTED] wrote: [snip] Where are the list administrators to ban this guy?? [/snip] This is an un-moderated list, so that makes us the police of our own list. Yes, it might be a un-moderated list, but there's someone who can ban users :) Tijnema -- PHP

Re: [PHP] Re: showing source

2007-05-18 Thread Tijnema !
doing this with live files that contain sensitive information. Or just a symlink from .phps to .php for the file :) Tijnema James Lockie [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] This almost works but all my and are replaced with . // open this file to show the source

Re: [PHP] Re: Download speed limit

2007-05-18 Thread Tijnema !
On 5/18/07, Rangel Reale [EMAIL PROTECTED] wrote: - Original Message - From: Tijnema ! [EMAIL PROTECTED] To: Jonathan [EMAIL PROTECTED] Cc: php-general@lists.php.net Sent: Friday, May 18, 2007 12:07 PM Subject: Re: [PHP] Re: Download speed limit On 5/18/07, Jonathan [EMAIL PROTECTED

Re: [PHP] People's misbehavior on the list

2007-05-18 Thread Tijnema !
On 5/18/07, Roger B.A. Klorese [EMAIL PROTECTED] wrote: Danial Rahmanzadeh wrote: hey, I use Gmail but i have the same problem. I use gmail too, and the messages are grouped nicely, I don't see any problem. Whoever said Gmail was a good mail client?! I do :) Tijnema -- PHP General

Re: [PHP] Security Question, re directory permissions

2007-05-18 Thread Tijnema !
not really a security problem, but if somebody notices it, he might write files there. Tijnema -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] People's misbehavior on the list

2007-05-18 Thread Tijnema !
, everything i need (headers etc) is showed when needed. Also, IP Addresses are not send with the mail, and that makes it also more anonymous. Tijnema -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] People's misbehavior on the list

2007-05-18 Thread Tijnema !
On 5/18/07, Greg Donald [EMAIL PROTECTED] wrote: On 5/18/07, Robert Cummings [EMAIL PROTECTED] wrote: On Fri, 2007-05-18 at 14:43 -0500, Greg Donald wrote: On 5/18/07, Roger B.A. Klorese [EMAIL PROTECTED] wrote: Whoever said Gmail was a good mail client?! I give up, who? Tijnema

Re: [PHP] People's misbehavior on the list

2007-05-18 Thread Tijnema !
On 5/18/07, Danial Rahmanzadeh [EMAIL PROTECTED] wrote: plus 2853 mb FREE storage 2853.822438 now, to be exact :) O wait, since I copied the amount of MB, it has changed already, it is 2853.822762 now :) Tijnema -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

Re: [PHP] Security Question, re directory permissions

2007-05-18 Thread Tijnema !
On 5/18/07, Al [EMAIL PROTECTED] wrote: How can they write or edit files there without having ftp access or the site's file manager? SSH access? Telnet maybe? PHP script? CGI script? ASP script? There are a lot of possible ways someone can write there. Tijnema Tijnema ! wrote: On 5/18/07

Re: [PHP] Include files....

2007-05-18 Thread Tijnema !
Thanks in advance for helping me through my obvious friday afternoon brain fart... I guess you forget that defaults.php is a php file and needs to start with ?php and end with ? Tijnema -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] People's misbehavior on the list

2007-05-18 Thread Tijnema !
On 5/18/07, Robert Cummings [EMAIL PROTECTED] wrote: On Fri, 2007-05-18 at 22:08 +0200, Tijnema ! wrote: On 5/18/07, Danial Rahmanzadeh [EMAIL PROTECTED] wrote: plus 2853 mb FREE storage 2853.822438 now, to be exact :) O wait, since I copied the amount of MB, it has changed already

Re: [PHP] Include files....

2007-05-18 Thread Tijnema !
On 5/18/07, Robert Cummings [EMAIL PROTECTED] wrote: On Fri, 2007-05-18 at 16:20 -0400, Jason Pruim wrote: On May 18, 2007, at 4:12 PM, Tijnema ! wrote: Thanks in advance for helping me through my obvious friday afternoon brain fart... I guess you forget that defaults.php

Re: [PHP] Include files....

2007-05-18 Thread Tijnema !
On 5/18/07, Robert Cummings [EMAIL PROTECTED] wrote: On Fri, 2007-05-18 at 22:31 +0200, Tijnema ! wrote: On 5/18/07, Robert Cummings [EMAIL PROTECTED] wrote: On Fri, 2007-05-18 at 16:20 -0400, Jason Pruim wrote: On May 18, 2007, at 4:12 PM, Tijnema ! wrote: Thanks in advance

Re: [PHP] People's misbehavior on the list

2007-05-18 Thread Tijnema
On 5/18/07, Greg Donald [EMAIL PROTECTED] wrote: On 5/18/07, Robert Cummings [EMAIL PROTECTED] wrote: On Fri, 2007-05-18 at 14:43 -0500, Greg Donald wrote: On 5/18/07, Roger B.A. Klorese [EMAIL PROTECTED] wrote: Whoever said Gmail was a good mail client?! I give up, who? Tijnema

Re: [PHP] People's misbehavior on the list

2007-05-18 Thread Tijnema
On 5/18/07, Danbrown ! [EMAIL PROTECTED] wrote: I changed it to Tijnema, you happy now ?? :P:P Tijnema Yes. Names with exclamation points are dumb. ;-P What a nice name do you have right now :-) I like it ;) Tijnema -- Daniel P. Brown [office] (570-) 587-7080 Ext. 272

Re: [PHP] People's misbehavior on the list

2007-05-18 Thread Tijnema
On 5/18/07, Jay Blanchard [EMAIL PROTECTED] wrote: [snip] ...some really funny and other not so funny stuff [/snip] It Must Be Friday [tm] For some people it is, and for it isn't anymore :-P Tijnema -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

Re: [PHP] Just to prove my point (used to be - Re: [PHP] People's misbehavior on the list)

2007-05-18 Thread Tijnema
to one another. Again, it has nothing to do with the subject line. Look at the subject line of this message. -- Jim Lucas Gmail does break your message now :( Just leave that damn title Re doesn't matter :) Tijnema -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit

Re: [PHP] People's misbehavior on the list

2007-05-18 Thread Tijnema
On 5/19/07, Daniel Brown [EMAIL PROTECTED] wrote: On 5/18/07, Tijnema [EMAIL PROTECTED] wrote: On 5/18/07, Danbrown ! [EMAIL PROTECTED] wrote: On 5/18/07, Tijnema [EMAIL PROTECTED] wrote: On 5/18/07, Danbrown ! [EMAIL PROTECTED] wrote: I changed it to Tijnema, you happy

Re: [PHP] Just to prove my point (used to be - Re: [PHP] People's misbehavior on the list)

2007-05-18 Thread Tijnema
Lucas Ok, so gmail is broken, lets spam google :) Tijnema -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] People's misbehavior on the list

2007-05-18 Thread Tijnema
On 5/19/07, Richard S. Crawford [EMAIL PROTECTED] wrote: On Friday 18 May 2007 15:25:35 Tijnema wrote: ? function sighRelief() { return Thank fucking God!; } ? Saves you some time, and resources Yeah, but where's the fun in that? Oh yeah, it saves you also the fun. Let me say it again

Re: [PHP] Just to prove my point (used to be - Re: [PHP] People's misbehavior on the list)

2007-05-18 Thread Tijnema
On 5/19/07, Jim Lucas [EMAIL PROTECTED] wrote: Tijnema wrote: On 5/19/07, Jim Lucas [EMAIL PROTECTED] wrote: Jim Lucas wrote: PHP Developer wrote: some people don't remove the Re: prefix when answering to the questions It opens a new topic on the list and that's not appropriate . Thank

Re: [PHP] Just to prove my point (used to be - Re: [PHP] People's misbehavior on the list)

2007-05-18 Thread Tijnema
On 5/19/07, Jim Lucas [EMAIL PROTECTED] wrote: Tijnema wrote: On 5/19/07, Jim Lucas [EMAIL PROTECTED] wrote: Tijnema wrote: On 5/19/07, Jim Lucas [EMAIL PROTECTED] wrote: Jim Lucas wrote: PHP Developer wrote: some people don't remove the Re: prefix when answering to the questions

Re: [PHP] Security Question, re directory permissions

2007-05-18 Thread Tijnema
. Al. Well, you were talking about a shared linux host, so other people, from a different account, could just upload files, and if you have a directory with 757, that user could write to it. Tijnema Tijnema ! wrote: On 5/18/07, Al [EMAIL PROTECTED] wrote: How can they write or edit

Re: [PHP] Security Question, re directory permissions

2007-05-18 Thread Tijnema
there from account b. Tijnema Tijnema wrote: On 5/19/07, Al [EMAIL PROTECTED] wrote: But, SSH and telnet, etc. require authentication login-in and all the executables you mentioned [and others] require someone who has access to upload a harmful file to start with. Right? Once

Re: [PHP] Security Question, re directory permissions

2007-05-19 Thread Tijnema
stuff :) Tijnema -- itoctopus - http://www.itoctopus.com Tijnema [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] On 5/19/07, Al [EMAIL PROTECTED] wrote: How can anyone, other than the staff, get into my site? Far as I know, other users can't get out of their own domain space

Re: [PHP] [Linux] PHP and SQL Server

2007-05-22 Thread Tijnema
specify 127.0.0.1 or localhost for the server, and not the IP. Tijnema -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: Uploading Files Should I use MySQL or Server for storage?

2007-05-22 Thread Tijnema
0), it would result in slow speeds for finding the actual data on the disk. Read operations are faster, but for small files, a database would be faster. This is probably not for your project, as you're files are little bit larger. [Please, don't ask for benchmarks of above statement.] Tijnema

Re: [PHP] How can i help

2007-05-22 Thread Tijnema
no problems with point 8: 8) volunteer access to your server to a QA Team member. Who should I contact for this? should I subscribe to the QA list and just ask who needs? :P Tijnema -Original Message- From: James Savage [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 22, 2007 7:27 AM To: php

Re: [PHP] Regular Expressions

2007-05-22 Thread Tijnema
the % symbol, but you could of course use anything you want :) Tijnema -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP Data Mining/Data Scraping

2007-05-22 Thread Tijnema
better off using cURL, you can simply pass a PHP array as POST form data. Tijnema -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Include???

2007-05-23 Thread Tijnema
, but preferred to use the include without (), like this: include complete_save.php; And of course, you could use the return value of the include function to check if the include was successful. Tijnema -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Form Processing Question - Empty Fields

2007-05-23 Thread Tijnema
='checkbox' name='photos[]' value=photo_id_here/ And now $_POST['photos'] will be an array with the values being the IDs of the checked photos. Tijnema -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Cannot access file on Network Drive (Windows 2003)

2007-05-23 Thread Tijnema
. Try X:\\Transfer\\test.dbf instead. Tijnema ps. Please don't top post. On 5/23/07 3:02 PM, Jay Blanchard [EMAIL PROTECTED] wrote: [snip] Let¹s say there¹s a database on X:\Transfer\test.dbf If I use: $db = dbase_open(³X:\Transfer\test.dbf², 0); It is not able to open the database. The X

Re: [PHP] Re: Cannot access file on Network Drive (Windows 2003)

2007-05-23 Thread Tijnema
On 5/23/07, Jared Farrish [EMAIL PROTECTED] wrote: Oh yeah, and tijnema has a good point: \\compname-x\\offsite\\db\\test.dbf For the escaping issue, you should use compname-x\\offsite\\db\\test.dbf Btw, what does top post mean? Means you are replying at top of the old post

<    3   4   5   6   7   8