[PHP] Test - Ignore

2010-08-09 Thread SED
Test A00 SED -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Advice needed - general (GPS, databases, webs etc.)

2010-05-15 Thread SED
Hi, I'm in the search for resources for the next step in the information's age. I think smartphones with GPS and the internet will be THE BIG BUSINESS next years. Because this is hard business I'm not able to get overview and resources handly, except by selling my soul to the big

RE: [PHP] PHP (32 bit) on IIS7.5 and MySQL 5.1.45 (64 bit) - established connection failed because connected host has failed to respond

2010-04-04 Thread SED
Hi Kevin, - MySQL 5.1 (64bit) is listening at port 0.0.0.0:3306 - MySQL 4.1 (32bit) is listening at port 0.0.0.0:3307 - When running MySQL command via PHP (CMD or browser) I get 127.0.0.1:3306 Established - I can connect to MySQL via CMD or MySQL Administrator GUI. - PHP (32bit) loads

RE: [PHP] PHP (32 bit) on IIS7.5 and MySQL 5.1.45 (64 bit) - established connection failed because connected host has failed to respond

2010-04-04 Thread SED
this manually - and it shock me (as a open source fan). At least, my Linuxs' servers are still intact. Ps. there is still snowing here in Iceland (heat -15°C in wind) and a volcano eruption that is growing. :) Thanks for your help, Summi -Original Message- From: SED [mailto:s...@sed.is

RE: [PHP] How to change a filename for download (e.g. jpeg, pdf etc.)

2010-02-05 Thread SED
('original.pdf'); header(Cache-Control: no-cache, must-revalidate); // HTTP/1.1 header(Expires: Sat, 26 Jul 1997 05:00:00 GMT); // Date in the past (Script from php.net based on your hints.) I have tested this in many ways, but before I did not know how this was simple. SED

[PHP] How to change a filename for download (e.g. jpeg, pdf etc.)

2010-01-25 Thread SED
Hi, Can anyone point me to tutorials on how to change a filename for each download? My goal is to give the downloader a random name for a picture or a document, so he will never know what the original filename is. Regards, Summi -- PHP General Mailing List (http://www.php.net/) To

[PHP] ip-to-country

2009-10-18 Thread SED
Hi, How can I access an index for IP to a country (or a more detailed location)? I have not yet found a function for that in PHP nor a free to use website that offers a remote search. Perhaps, there is another solution - any ideas? Regards, Summi -- PHP General Mailing List

RE: [PHP] How to install ISAPI version on Vista IIS 6

2007-12-12 Thread SED
Maybe I'll make a webpage to explain this and post it here. This took to much time to find out and I found no throughout guidance on the web. SED -Original Message- From: Andrés Robinet [mailto:[EMAIL PROTECTED] Sent: 12. desember 2007 05:05 To: 'SED' Cc: php-general@lists.php.net

[PHP] How to install ISAPI version on Vista IIS 6

2007-12-11 Thread SED
map the IsapiModule or the CgiModule is not prensent in the modules list. I have Googled this but did not find any answers. Even on php.net there is no mention on Vista. Can you point me to guidance for installing PHP 5 on Vista running IIS 6.0? Regards, SED

RE: [PHP] How to install ISAPI version on Vista IIS 6

2007-12-11 Thread SED
, SED -Original Message- From: Andrés Robinet [mailto:[EMAIL PROTECTED] Sent: 12. desember 2007 04:08 To: php-general@lists.php.net Subject: RE: [PHP] How to install ISAPI version on Vista IIS 6 -Original Message- From: SED [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 12

[PHP] How to disable the Daylight saving time in PHP 5?

2007-04-06 Thread SED
I need to disable the Daylight saving time in PHP 5. My servers (Windows, both XP and Vista) have correct local time but PHP 5 adds an extra hour when I use date(H) or other time functions. Instead of getting 9 AM, I get 10 AM. If I run date(I), I get 1, which confirms that PHP 5 is using

RE: [PHP] How to disable the Daylight saving time in PHP 5?

2007-04-06 Thread SED
I changed my timezone in php.ini to: date.timezone = GMT0 ; ...and it works! Thanks! Regards, Summi Netfang [EMAIL PROTECTED] Heimasíða http://www.sed.is -Original Message- From: Tijnema ! [mailto:[EMAIL PROTECTED] Sent: 6. apríl 2007 09:43 To: SED Cc: php-general

RE: [PHP] How to disable the Daylight saving time in PHP 5?

2007-04-06 Thread SED
-Original Message- From: Jochem Maas [mailto:[EMAIL PROTECTED] Sent: 6. apríl 2007 10:06 To: Tijnema ! Cc: SED; php-general@lists.php.net Subject: Re: [PHP] How to disable the Daylight saving time in PHP 5? Tijnema ! wrote: On 4/6/07, SED [EMAIL PROTECTED] wrote: I need to disable

[PHP] POST long texts to PHP

2005-05-07 Thread SED
I need to POST long texts through a form to PHP but the text cuts down to around 64.000 characters. Is there any way to allow longer texts (like in php.ini)? Regards, SED -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Can I use ftp_put to bypass upload_max_filesize?

2005-03-15 Thread SED
upload_max_filesize is set to 16MB) Regards, SED -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Re: Can I use ftp_put to bypass upload_max_filesize?

2005-03-15 Thread SED
Are you meaning timeout limit? Not PHP script execution limit in php.ini? What I understand, the PHP script does not run until the file is uploaded to the server via POST. SED -Original Message- From: Eli [mailto:[EMAIL PROTECTED] Sent: 15. mars 2005 23:27 To: php-general@lists.php.net

[PHP] Can $_SERVER['REMOTE_ADDR'] be trusted?

2005-02-23 Thread SED
Is it possible for hackers to give a fake IP address when visiting a website running PHP? I want to allow certain IP addresses have access to a website (other IP addresses not), is it possible for someone (e.g. hacker) to give fake IP address? If so, how is the website returned to this someone?

[PHP] Security - chmod 777 - PHP upload/write

2005-01-10 Thread SED
can write data to that file, which is a security risk. Is that true? If I do so, is it right that anyone can write a data to that folder? E.g. PHP-script that can reveal everything? Regards, SED -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] SAFE MODE Restriction - mkdir()

2004-11-25 Thread SED
This answer from Mike solved this (e.g. create a CGI process for this task): [...] So, yes, you can create a directory which it is then impossible to access -- this is an unfortunate side-effect of safe mode when PHP runs as an Apache module and hence as the Apache user. This is why hosted

[PHP] SAFE MODE Restriction - mkdir()

2004-11-24 Thread SED
Hi, I have very wierd situation. The ISP is running in SAFE MODE. I use PHP to create a directory with mkdir(something, 0777), it works great! However, if I try to create a sub-directory (e.g. something2) in the something directory, I get the following: Warning: SAFE MODE Restriction in

RE: [PHP] SAFE MODE Restriction - mkdir()

2004-11-24 Thread SED
of the function? Regards, Summi -Original Message- From: Marek Kilimajer [mailto:[EMAIL PROTECTED] Sent: 25. nóvember 2004 00:05 To: SED Cc: [EMAIL PROTECTED] Subject: Re: [PHP] SAFE MODE Restriction - mkdir() SED wrote: Hi, I have very wierd situation. The ISP is running in SAFE MODE

RE: [PHP] SAFE MODE Restriction - mkdir()

2004-11-24 Thread SED
-Original Message- From: Marek Kilimajer [mailto:[EMAIL PROTECTED] Sent: 25. nóvember 2004 01:13 To: SED Cc: [EMAIL PROTECTED] Subject: Re: [PHP] SAFE MODE Restriction - mkdir() SED wrote: Then, shouldn't the owner be able to handle the new directory? In my case, the owner creates

RE: [PHP] SAFE MODE Restriction - mkdir()

2004-11-24 Thread SED
. Regards, Summi -Original Message- From: Michael Leung [mailto:[EMAIL PROTECTED] Sent: 25. nóvember 2004 03:21 To: SED Cc: [EMAIL PROTECTED] Subject: Re: [PHP] SAFE MODE Restriction - mkdir() Hi sed, which version of PHP you using? may not be just Safe Mode. is it the script working

[PHP] A function in PHP that changes html in a string from p align=center to p align=center ?

2004-08-12 Thread SED
Is there any function in PHP that changes html in a string from p align=center to p align=center ? (e.g. adding the double quotes) Regards, Sumarlidi Einar Dadason SED DESIGN _ Email: [EMAIL PROTECTED] Website: http://www.sed.is -- PHP General

[PHP] Is it possible to see if a jpeg is RGB or CMYK via PHP GD2?

2004-01-09 Thread SED
thumbnail creation? Regards, SED

[PHP] [problem solved] - Is it possible to see if a jpeg is RGB or CMYK via PHP GD2?

2004-01-09 Thread SED
: SED [mailto:[EMAIL PROTECTED] Sent: 9. janúar 2004 09:51 To: [EMAIL PROTECTED] Subject: [PHP] Is it possible to see if a jpeg is RGB or CMYK via PHP GD2? I'm allowing user to upload images to a gallery. However, some user seem to have both RGB and CMYK jpeg images. I get an error from

RE: [PHP] How to swap the table's bg color with php

2003-10-03 Thread SED
You will need Javascript and CSS (and this is not a postlist for that). If you are not familiar to both, this work can get tricky at first. Regards, Sumarlidi Einar Dadason SED DESIGN _ Address: Thingvallastraeti 4 600 Akureyri

RE: [PHP] PHP and graphics

2003-07-03 Thread SED
only find a algorithm. Regards, Sumarlidi Einar Dadason SED DESIGN _ Email:[EMAIL PROTECTED] Website: http://www.sed.is -Original Message- From: César Aracena [mailto:[EMAIL PROTECTED] Sent: 3. júlí 2003 13:57 To: [EMAIL PROTECTED

RE: [PHP] PDF Creation

2003-03-13 Thread SED
Try FPDF.org! It's great! Regards, Sumarlidi E. Dadason SED - Graphic Design _ Tel: 896-0376, 461-5501 E-mail: [EMAIL PROTECTED] website: www.sed.is -Original Message- From: Christopher J. Crane [mailto:[EMAIL PROTECTED] Sent: 13. mars 2003 18:05

RE: [PHP] Flash interaction with PHP

2003-02-24 Thread SED
The easiest way to do this is putting variables behind ? in the filename: myFlashMovie.swf?myVarA=123myVarB=456 The variable above will be assign in the _root in the Flash file: _root.myVarA _root.myVarA Regards, Sumarlidi E. Dadason SED:DESIGN

[PHP] Why is function imagecreatefromjpeg() undefined in PHP 4.3 when GD is enabled and imagecreatefrompng() id defined? A bug?

2003-02-07 Thread SED
Build no Thread Safety disabled Registered PHP Streams php, http, ftp, compress.bzip2, compress.zlib Regards, Sumarlidi E. Dadason SED - Graphic Design E-mail: [EMAIL PROTECTED] website: www.sed.is -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

RE: [PHP] Re: Why is function imagecreatefromjpeg() undefined in PHP 4.3 when GD is enabled and imagecreatefrompng() id defined? A bug?

2003-02-07 Thread SED
imagecreatefromjpeg() undefined in PHP 4.3 when GD is enabled and imagecreatefrompng() id defined? A bug? You need to install jpeg-6bftp://ftp.uu.net/graphics/jpeg/ and dd --with-jpeg-dir=DIR. -- Regards. M.CHAILLAN Nicolas [EMAIL PROTECTED] www.WorldAKT.com Hébergement de sites internets. Sed

RE: [PHP] PHP/Flash Dynamic Graphs?

2003-01-15 Thread SED
You should look for loadVariables() in ActionScript (Flash) in this case rather than MING. Regards, Sumarlidi E. Dadason SED - Graphic Design _ E-mail: [EMAIL PROTECTED] website: www.sed.is -Original Message- From: MH [mailto:[EMAIL PROTECTED]] Sent: 15

[PHP] Different php.ini for each user on same server

2003-01-08 Thread SED
2 (amateur PHP-user) Allow smal uploads, short execution time etc. Virtual directory www.user2.com Thanks, Sumarlidi E. Dadason SED - Graphic Design _ E-mail: [EMAIL PROTECTED] website: www.sed.is -- PHP General Mailing List (http://www.php.net

RE: [PHP] Different php.ini for each user on same server

2003-01-08 Thread SED
Maybe I'm little bit slow today but I already look into this document. What paragraph should I focus better on? What I'm looking for is *how to* refer to a different php.ini in each case. Thanks, SED -Original Message- From: Timothy Hitchens (HiTCHO) [mailto:[EMAIL PROTECTED]] Sent: 9

RE: [PHP] way to insert timer / pause?

2003-01-02 Thread SED
Sure, just read the following: http://www.php.net/manual/en/function.sleep.php As a reply for your second question, you can always assign the output to a variable and echo the variable in the end of the script. Regards, Sumarlidi E. Dadason SED - Graphic Design

RE: [PHP] importing array from flash, how does PHP handle it?

2002-12-30 Thread SED
As an array. However, you can test this in the page that receives the post with fallowing code: foreach($_POST as $val = $key) { echo $val. = .$key.br; } Regards, Sumarlidi E. Dadason SED - Graphic Design _ E-mail: [EMAIL

[PHP] Javascript + PHP

2002-11-15 Thread SED
there are many pros on this list, maybe someone can point me to a JavaScript postlist similar to this. Thanks, Sumarlidi E. Dadason SED - Graphic Design _ Tel: 896-0376, 461-5501 E-mail: [EMAIL PROTECTED] website: www.sed.is -- PHP General Mailing List (http

[PHP] 2 questions about PHP download

2002-11-10 Thread SED
Is it possible to use the PHP-extentions for Apahce with the PHP for the CGI version, while the version number matches? What is the md5-hash beneath the download for? Regards, Sumarlidi E. Dadason SED - Graphic Design _ Tel: 896-0376, 461-5501 E-mail: [EMAIL

[PHP] PHP + MySQL, how to get total rows matched when using LIMIT 0, 10?

2002-11-05 Thread SED
I'm trying to get the total matched rows when I'm using LIMIT 0, 10, but I only get the number 10, when the total should be around 100. So, can I get total matched rows without doing a separate query using count()? Here is an example of my current query: $result = mysql_query(SELECT * FROM

RE: [PHP] storing cc details in mysql

2002-11-04 Thread SED
Rule no. 1 = Never save the cc-numbers in an online database. Regards, Sumarlidi E. Dadason SED - Graphic Design _ Tel: 896-0376, 461-5501 E-mail: [EMAIL PROTECTED] website: www.sed.is -Original Message- From: adrian [EMAIL PROTECTED

[PHP] Security - Maybe a silly question

2002-11-01 Thread SED
it (get the username/password)? Regards, Sumarlidi E. Dadason SED - Graphic Design _ Tel: +354-896-0376, +354-461-5501 E-mail: [EMAIL PROTECTED] website: www.sed.is -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

RE: [PHP] Security - Maybe a silly question

2002-11-01 Thread SED
Thank you for the reply, what do you mean by sniffing, do you mean everbody can monitor our browsing? -Original Message- From: @ Edwin [mailto:copperwalls;hotmail.com] Sent: 1. nóvember 2002 21:47 To: SED Cc: [EMAIL PROTECTED] Subject: Re: [PHP] Security - Maybe a silly question Hello

RE: [PHP] Security - Maybe a silly question

2002-11-01 Thread SED
I'm not very familiar to this stuff, but if I wanna use https:// do don't I need a key from Verisign (or similar) to make it work? If so, who control who is what on the internet? Regards, Sumarlidi E. Dadason SED - Graphic Design _ Tel: 896-0376, 461-5501 E-mail

[PHP] How to sort by 3rd row in an 2d-Array

2002-04-12 Thread SED
']; } array_multisort($myArray, $sortarray); Thanks in advance! SED -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Does $HTTP_REFERER show where you was last time or where the user clicked on a link to mine?

2002-03-08 Thread SED
Hi, Does $HTTP_REFERER show where you was last time or where the user clicked on a link to mine? Regards, SED -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] How to transfer letters (e.g. en-us, es, fr etc.) to full names (e.g. England, France etc.)?

2002-03-05 Thread SED
? Maybe you have one already you can send me? Thanks in advance! SED -- PHP General Mailing List (http://wwwphpnet/) To unsubscribe, visit: http://wwwphpnet/unsubphp

RE: [PHP] accessing flash files using php

2002-02-25 Thread SED
if you have a access to the action-script within the Flash-movie, write there a script like: gotoandplay(_root.myframe); and let the HTML-path be something like: myFlashMovie.swf?myframe=20 Regards, Sumarlidi Einar Dadason SED - Graphic Design

[PHP] When should I use gethostbyaddr () if I want to monitoring the users

2002-02-19 Thread SED
? Regards, Sumarlidi Einar Dadason SED - Graphic Design -- Tel.4615501 GSM 8960376 E-mail [EMAIL PROTECTED] Website:www.sed.is -- -- PHP General Mailing List (http://www.php.net/) To unsubscribe

[PHP] How to find out what country the visitor comes from

2002-02-07 Thread SED
) Sometime I get domain which does the job (and that works) but often I get just IP number which leaves me out in the cold. Is there any other way to capture the visitors country? Thanks, SED -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] web automatization problem

2001-10-26 Thread SED
Hi, This solution works in most browsers: table width=(image width) align=(left,right) trtd img (your image) /td/tr trtd (your text) /td/tr /table Regards, Sumarlidi Einar Dadason SED - Graphic Design

[PHP] Security with include() function

2001-09-20 Thread SED
php.exe before delivered? Thanks! SED -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

[PHP] Monitoring traffic

2001-09-14 Thread SED
Hi, This is kind of off topic but I need to monitor the traffic in kilobytes/bits on my net card adapter (in/out) or server (PHP, HTML, etc.), do you know of any software? I'm using Win2000. Thanks, SED -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL

RE: [PHP] How do I find out what version of GD I'm running?

2001-09-07 Thread SED
Run this function: phpinfo ([int what]) Check the manual for further details. Regards, Sumarlidi Einar Dadason SED - Graphic Design -- Phone: (+354) 4615501 Mobile: (+354) 8960376 Fax: (+354) 4615503 E-mail: [EMAIL

[PHP] What happened to Imagettftext() function in PHP 4.0.7 and GD 2.1?

2001-08-29 Thread SED
version working and I of course I can't use the both versions at the same time. Does anyone know why the true type fonts gets very so ugly/damage in this latest GD version? Do you know how I can bypass this problem? Thanks! Sumarlidi Einar Dadason SED - Graphic Design

RE: [PHP] What does PHP stand for?

2001-08-28 Thread SED
The manual says: officially PHP: Hypertext Preprocessor SED -Original Message- From: Niklas Lampén [mailto:[EMAIL PROTECTED]] Sent: 28. ágúst 2001 10:38 To: Php-General Subject: [PHP] What does PHP stand for? It just crossed my mind: I don't know what PHP stands for...so

RE: [PHP] What does PHP stand for?

2001-08-28 Thread SED
I suggest this for the PHP ;) Professional Hypertext Preprocessor SED -Original Message- From: Niklas Lampén [mailto:[EMAIL PROTECTED]] Sent: 28. ágúst 2001 11:11 To: Php-General Subject: RE: [PHP] What does PHP stand for? So PHP stands for Personal Home Pages Hypertext

RE: [PHP] SSL Advice

2001-08-23 Thread SED
Hi Berber, I was reading the agreement for Verisign certificate and they request a fee for each machine and, if I remember it correctly, each domain, and it's not a cheap one! Regards, Sumarlidi Einar Dadason SED - Graphic Design -- Phone: (+354

RE: [PHP] [PHP-WIN] Binary GD Library for W2K

2001-08-08 Thread SED
Check this out - http://php4win.de/ SED -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: 8. ágúst 2001 21:46 To: [EMAIL PROTECTED] Subject: [PHP] [PHP-WIN] Binary GD Library for W2K Hi All, some partner in the world has the GD binaries ?, please don't

RE: [PHP] php_gd.dll for windows, please help me....

2001-08-07 Thread SED
Try this one: http://php4win.de/ SED -Original Message- From: Marius Pertravèius [mailto:[EMAIL PROTECTED]] Sent: 4. ágúst 2001 22:33 To: [EMAIL PROTECTED] Subject: [PHP] php_gd.dll for windows, please help me Sveiki, PHP, Does anyone here has good php_gd.dll file

RE: [PHP] OR Problems

2001-07-24 Thread SED
Why aren't you using the brackets? if (statement){ } else { } SED -Original Message- From: J S R [mailto:[EMAIL PROTECTED]] Sent: 25. júlí 2001 04:06 To: [EMAIL PROTECTED] Subject: [PHP] OR Problems Shouldn't

RE: [PHP] REPOST: Image color quality problems

2001-07-23 Thread SED
solution! Regards, Sumarlidi Einar Dadason SED - Graphic Design -- Phone: (+354) 4615501 Mobile: (+354) 8960376 Fax: (+354) 4615503 E-mail: [EMAIL PROTECTED] Homepage:www.sed.is

[PHP] How can I see if variable is a odd or an even number?

2001-07-16 Thread SED
Do you know if there is a function to find out if a variable contains a odd or an even number? I checked the manual but didn't see it. Thanks! Regards, Sumarlidi Einar Dadason SED - Graphic Design -- Phone: (+354) 4615501 Mobile: (+354

[PHP] Function? How to find if xy values are within a coordinates of polygon?

2001-07-11 Thread SED
lightly through the PHP-manual but not found any. Thanks, SED -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

[PHP] Where can I download GD 2.0 or later? (php_gd.dll for Win)

2001-07-11 Thread SED
Where can I download GD 2.0 or later? (php_gd.dll for Win) SED -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

[PHP] RE: [correction] Where can I download GD 2.0 or later? (php_gd.dll for Win)

2001-07-11 Thread SED
What I really wanted ask about was if any knows about GD 2.x version with build in GIF-support (I need both GIF-support and all the new GD-JPEG function to work on the same time). SED -Original Message- Where can I download GD 2.0 or later? (php_gd.dll for Win) SED -- PHP General

[PHP] Re: Function? How to find if xy values are within a coordinates of polygon?

2001-07-11 Thread SED
Thanks to Lasse I found a good solution, you can view it here: http://softlab.od.ua/algo/other/alg/node158.html Thanks! SED -Original Message- From: Lasse [mailto:[EMAIL PROTECTED]] Sent: 11. júlí 2001 22:02 To: [EMAIL PROTECTED] Subject: [PHP] Re: Function? How to find if xy

[PHP] How to add a new color to JPEG

2001-07-10 Thread SED
the yellow color. I have not found a way to do this though I believe I have tried everything. And yet, I have not found any documents covering this other than PHP-manual. Do you know of a way to do this? Or do you know of other manuals/tutorials covering this issue? Regards, Sumarlidi Einar Dadason SED

RE: [PHP] How to add a new color to JPEG

2001-07-10 Thread SED
picture, only a yellow text. SED -Original Message- From: Jeff Lewis [mailto:[EMAIL PROTECTED]] Sent: 10. júlí 2001 17:26 To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: RE: [PHP] How to add a new color to JPEG Could try this: $blue = ImageColorAllocate($image, 0, 0, 255); Substitue blue

RE: [PHP] How to add a new color to JPEG

2001-07-10 Thread SED
you could always create it on the fly... -Original Message- From: SED [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 10, 2001 1:52 PM To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: RE: [PHP] How to add a new color to JPEG That’s the problem, if I do that and the color

RE: [PHP] How to add a new color to JPEG

2001-07-10 Thread SED
are talking about JPEG, not GIF? SED -Original Message- From: James Cox [mailto:[EMAIL PROTECTED]] Sent: 10. júlí 2001 23:28 To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: RE: [PHP] How to add a new color to JPEG That's something you would need to do in photoshop. open your image

RE: [PHP] How to add a new color to JPEG

2001-07-10 Thread SED
. SED -Original Message- From: Matthew Loff [mailto:[EMAIL PROTECTED]] Sent: 10. júlí 2001 23:30 To: 'James Cox'; [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: RE: [PHP] How to add a new color to JPEG Is this only a problem with PHP/GD versions previous to 4.0.6/2.0.1? Does the new

[PHP] Expert advice needed

2001-07-09 Thread SED
. Regards, Sumarlidi Einar Dadason SED - Graphic Design -- Phone: (+354) 4615501 Mobile: (+354) 8960376 Fax: (+354) 4615503 E-mail: [EMAIL PROTECTED] Homepage:www.sed.is -- -- PHP General

[PHP] Strange problem with fputs ($fp, $newVote)

2001-07-07 Thread SED
Dadason SED - Graphic Design -- Phone: (+354) 4615501 Mobile: (+354) 8960376 Fax: (+354) 4615503 E-mail: [EMAIL PROTECTED] Homepage:www.sed.is -- -- PHP General Mailing List (http

RE: [PHP] Strange problem with fputs ($fp, $newVote)

2001-07-07 Thread SED
, a); - the plus taken away! ftruncate ($fp, 0); fwrite ($fp, $newVote); fclose ($fp); Can this be a bug? SED -Original Message- From: SED [mailto:[EMAIL PROTECTED]] Sent: 7. júlí 2001 21:56 To: [EMAIL PROTECTED] Subject: [PHP] Strange problem with fputs ($fp, $newVote

RE: [PHP] get a screen resolution

2001-07-06 Thread SED
While we are talking about JavaScript, do you know of any postlist like this one I can subscribe to? I have been looking for it but not found any (I know of lot of websites but without this). Regards, Sumarlidi Einar Dadason SED - Graphic Design -- Phone

[PHP] Post a form within a running php-script

2001-07-06 Thread SED
For a special purpose I want to post a form within a running script, is it possible? I don't need the feedback, only post it to a http-path. (To clarify, I'm not asking about Submitting a form via button.) Regards, Sumarlidi Einar Dadason SED - Graphic Design

RE: [PHP] Post a form within a running php-script

2001-07-06 Thread SED
a running php-script Put the variables in the url ie: script.php?username=joebobpassword=joepassword - Original Message - From: SED [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, July 06, 2001 6:30 PM Subject: [PHP] Post a form within a running php-script For a special purpose I want

RE: [PHP] time

2001-06-20 Thread SED
I would guess server-time because the PHP is server-based and is processed before the user gets it :) SED -Original Message- From: Jon Yaggie [mailto:[EMAIL PROTECTED]] Sent: 20. maí 2001 13:51 To: [EMAIL PROTECTED] Subject: [PHP] time quickly can some one tell me if time() return

RE: [PHP] Calculate # of minutes during working hours between two dates

2001-06-20 Thread SED
Try to find unix-time in seconds: (endtime - starttime) / 60 = total minutes SED -Original Message- From: Wim Koorenneef [mailto:[EMAIL PROTECTED]] Sent: 20. júní 2001 15:26 To: [EMAIL PROTECTED] Subject: [PHP] Calculate # of minutes during working hours between two dates Hi all, I

[PHP] How can I enable magic_quotes_gpc without editing PHP.ini

2001-05-16 Thread SED
Hi, I need to enable magic_quotes_qpc for one session (or a script) but I can no access to the php.ini on the server. Is it possible to do it? And if so, how? Regards, Sumarlidi Einar Dadason SED - Graphic Design -- Phone: (+354) 4615501 Mobile

RE: [PHP] uploading problems

2001-05-12 Thread SED
Hi Theo, I'm not sure it will help, but can it be because of script execution time? Increase the time I try again. If it works, please let me know. Greetz, SED -Original Message- From: Theo Richel [mailto:[EMAIL PROTECTED]] Sent: 12. maí 2001 08:17 To: [EMAIL PROTECTED] Subject: [PHP

[PHP] Upload time vs. script execution time

2001-05-11 Thread SED
(but without editing the php.ini). Thanks in advance! SED -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

[PHP] Check this out - http://www.hotscripts.com/webpoll/results.php

2001-05-10 Thread SED
...of course M$ is worried about PHP, see this: http://www.hotscripts.com/webpoll/results.php SED -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL

RE: [PHP] Variable (naming them) Functions.

2001-04-27 Thread SED
Why not use classes? If I understand you problem correctly, I think classes should solve your problem. Right? SED -Original Message- From: Maxim Maletsky [mailto:[EMAIL PROTECTED]] Sent: 27. apríl 2001 11:58 To: 'PHP General List. (E-mail)' Subject: [PHP] Variable (naming them

[PHP] *.php and the search engienes on the web

2001-04-26 Thread SED
Hi all, If I make a whole website based on one PHP-navigation file with links like index.php?id=123, will all the search engines who crawl the websites be able to follow it and index? Regards, Sumarlidi Einar Dadason SED - Graphic Design -- Phone

[PHP] Graphic process within PHP

2001-04-18 Thread SED
platforms (which PHP supports) and with all web servers? Thanks! Regards, Sumarlidi Einar Dadason SED - Graphic Design -- Phone: (+354) 4615501 Mobile: (+354) 8960376 Fax: (+354) 4615503 E-mail: [EMAIL PROTECTED] Homepage:www.sed.is

[PHP] Installing PHP Extentions for IIS - W2K - Is it possible?

2001-04-16 Thread SED
- and if so, how did you overcome it? Regards, Sumarlidi Einar Dadason SED - Graphic Design -- Phone: (+354) 4615501 Mobile: (+354) 8960376 Fax: (+354) 4615503 E-mail: [EMAIL PROTECTED] Homepage:www.sed.is - New Homepage

RE: [PHP] no reponse -- Need FTP help

2001-04-12 Thread SED
Hafu check out the ftp funtions build in PHP? You can find them on their website www.php.net. Regards, Sumarlidi Einar Dadason SED - Graphic Design -- Phone: (+354) 4615501 Mobile: (+354) 8960376 Fax: (+354) 4615503 E-mail: [EMAIL

RE: [PHP] radio groups in looped form

2001-04-11 Thread SED
I don't think you can. The browser groups them by the name, so you will have to write some code (simple) to change the name... SED -Original Message- From: Peter Houchin [mailto:[EMAIL PROTECTED]] Sent: 11. aprl 2001 23:33 To: Php-General@Lists. Php. Net Subject: [PHP] radio groups

RE: [PHP] radio groups in looped form

2001-04-11 Thread SED
e same way (perhaps you may want to keep the total value of $i in a hidden form field for later use). SED -Original Message- From: Peter Houchin [mailto:[EMAIL PROTECTED]] Sent: 12. aprl 2001 00:05 To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: RE: [PHP] radio groups in looped form e

RE: [PHP] radio groups in looped form

2001-04-11 Thread SED
n a hidden form field for later use). SED -Original Message- From: Peter Houchin [mailto:[EMAIL PROTECTED]] Sent: 12. aprl 2001 00:05 To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: RE: [PHP] radio groups in looped form even though i am putting them in an array? like input type=&q

[PHP] Not important - Simple question about microsec()

2001-04-03 Thread SED
?), but what does the former part say like: 0.25576700 ?!? I read in the manual it should be the 1/100 of seconds but it does not compute in my brain, how come is the End time lower than the Begin time? Probably I'm thinking of it the wrong way, but I hope you can light me :) Regards, SED

[PHP] Simple question about mail() limitations (if any :)

2001-03-21 Thread SED
to work around the limitation by using delay between sending certain amount of mails? Regards, Sumarlidi Einar Dadason SED - Graphic Design -- Phone: (+354) 4615501 Mobile: (+354) 8960376 Fax: (+354) 4615503 E-mail: [EMAIL PROTECTED

[PHP] How to convert '2001032018' - '2001 03 20 18' ? (Fomating Date)

2001-03-20 Thread SED
Hi, I'm trying to convert the timestamp '2001032018' into '2001 03 20 18' or an Array which I can easily format. Do you remember any date or string function I can use? Regards, Sumarlidi Einar Dadason SED - Graphic Design -- Phone: (+354) 4615501

[PHP] Simple PHP 4 and MySQL question about query

2001-03-19 Thread SED
parameters? (I have tried many most of the functions but I don't get the correct result, and the manual is not helping me :) Regards, Sumarlidi Einar Dadason SED - Graphic Design -- Phone: (+354) 4615501 Mobile: (+354) 8960376 Fax: (

RE: [PHP] Simple PHP 4 and MySQL question about query - Problem solved!

2001-03-19 Thread SED
d=$id"); -- Then I was able to use: mysql_result($result, 0); to get the result. Regards, Sumarlidi Einar Dadason SED - Graphic Design -- Phone: (+354) 4615501 Mobile: (+354) 8960376 Fax: (+354) 4615503 E-mail: [EMAIL PROTECTED

[PHP] What means can't truncate sockets!

2001-03-01 Thread SED
quot;real" path e.g. c:\\domains\\mydomain... (etc.) or is it something else I should focus at? I'm working on a remote server (Linux/Apache) but this works 100% on my local server (Win2k/IIS5). Regards, Sumarlidi Einar Dadason SED - Graphic Design -

[PHP] How to enable GD with PHP

2001-02-26 Thread SED
Hi, I downloaded the GD libary and want to enable it with PHP but I cant figure out how to do that - can anyone tell me how to do it? Do I have to put the path to GD-libary inside the PHP.ini and if so, where? Regards, Sumarlidi Einar Dadason SED - Graphic Design

[PHP] Apache on Linux vs. IIS on W2K

2001-02-17 Thread SED
the best, and curse the IIS and W2K, but at this time I would say it's a myth..) Regards, Sumarlidi Einar Dadason SED - Graphic Design -- Phone: (+354) 4615501 Mobile: (+354) 8960376 Fax: (+354) 4615503 E-mail: [EMAIL PROTECTED] Homepage:

  1   2   >