[PHP] Fwd: What wrong am I doing now?

2013-07-24 Thread Karl-Arne Gjersøyen
http://www.php.net/manual/en/datetime.format.php have the solution. Sorry for asking before I look at php.net!!! Karl -- Forwarded message -- From: Karl-Arne Gjersøyen karlar...@gmail.com Date: 2013/7/24 Subject: What wrong am I doing now? To: PHP Mailinglist

Re: [PHP] Fwd: What wrong am I doing now?

2013-07-24 Thread Sebastian Krebs
Hi, Just want to mention: ext/mysel is deprecated. Use MySQLi, or PDO_MYSQL instead. :) Regards, Sebastian 2013/7/24 Karl-Arne Gjersøyen karlar...@gmail.com http://www.php.net/manual/en/datetime.format.php have the solution. Sorry for asking before I look at php.net!!! Karl --

[PHP] Fwd: Hmmm.. I think I need your advice here to get in correct direction...

2013-07-10 Thread Karl-Arne Gjersøyen
Sorry, the first mail in this subject run out for me. This is an updated one. I am almost ready with my learning project in PHP/MySQL. I can register new product in stock. Add and increase the number and weight. I can move products between different storehouses I can also transfer products from

[PHP] Fwd: Hmm.. I got NULL here. Why?

2013-07-05 Thread Karl-Arne Gjersøyen
My PHP Source = ?php include('../../tilkobling.php'); $sql = SELECT kg_pa_lager FROM dynamit WHERE valgt_lager = '$valgt_lager' AND varenr = '$varenr'; $resultat = mysql_query($sql, $tilkobling) or die(mysql_error()); while($rad = mysql_fetch_array($resultat)){

Re: [PHP] Fwd: Is it possible???

2013-06-25 Thread php
On Mon, Jun 24, 2013 at 06:17:33PM +0200, Maciek Sokolewicz wrote: Please please please please don't do this! 1) You did not answer the question, nor giving any related information. 2) This was debug-output. I see not point in optimizing. 3) print is language construct, just as is echo 4)

[PHP] Thread-Hijacking (was: Re: [PHP] Fwd: Is it possible???)

2013-06-25 Thread Tamara Temple
Maciek Sokolewicz maciek.sokolew...@gmail.com wrote: Please please please please don't do this! Please Please Please Do Not Hijack Threads. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Thread-Hijacking (was: Re: [PHP] Fwd: Is it possible???)

2013-06-25 Thread Maciek Sokolewicz
On 25 June 2013 10:02, Tamara Temple tamouse.li...@gmail.com wrote: Maciek Sokolewicz maciek.sokolew...@gmail.com wrote: Please please please please don't do this! Please Please Please Do Not Hijack Threads. Hijacking would be starting a completely different discussion in the same thread.

[PHP] Fwd: Is it possible???

2013-06-24 Thread Karl-Arne Gjersøyen
Error in my last post This is corrected: $item_amount_in_store = 223; $update_amount = 7; $item_amount_in_Store += $update_amount; It show the result = 227 and not 230. Why is this happen? Karl -- Forwarded message -- From: Karl-Arne Gjersøyen karlar...@gmail.com Date:

Re: [PHP] Fwd: Is it possible???

2013-06-24 Thread Stuart Dallas
On 24 Jun 2013, at 13:02, Karl-Arne Gjersøyen karlar...@gmail.com wrote: Error in my last post This is corrected: $item_amount_in_store = 223; $update_amount = 7; $item_amount_in_Store += $update_amount; It show the result = 227 and not 230. Why is this happen? Something else is going

Re: [PHP] Fwd: Is it possible???

2013-06-24 Thread nobs
You should give a complete programm so we can run exactly the same you do, like this: ?php $item_amount_in_store = 223; print ($item_amount_in_store); $update_amount = 7; $item_amount_in_store += $update_amount; print ( + $update_amount = $item_amount_in_store ); ? which gives this result:

Re: [PHP] Fwd: Is it possible???

2013-06-24 Thread Sachin Raut
variables are case-sensitive. $item_amount_in_store is different from $item_amount_in_Store 1st variable contains all lowercase characters, while the 2nd one contains S uppercase character. happy coding sachin On Mon, Jun 24, 2013 at 5:32 PM, Karl-Arne Gjersøyen karlar...@gmail.comwrote:

Re: [PHP] Fwd: Is it possible???

2013-06-24 Thread Maciek Sokolewicz
On 24-6-2013 14:27, n...@nobswolf.info wrote: You should give a complete programm so we can run exactly the same you do, like this: ?php $item_amount_in_store = 223; print ($item_amount_in_store); Please please please please don't do this! First of all, I don't know why you would use the

Re: [PHP] Fwd: Is it possible???

2013-06-24 Thread Carlos Medina
Amen! Am 24.06.2013 18:17, schrieb Maciek Sokolewicz: On 24-6-2013 14:27, n...@nobswolf.info wrote: You should give a complete programm so we can run exactly the same you do, like this: ?php $item_amount_in_store = 223; print ($item_amount_in_store); Please please please please

Re: [PHP] Fwd: Is it possible???

2013-06-24 Thread Marco Behnke
Am 24.06.2013 18:17, schrieb Maciek Sokolewicz: On 24-6-2013 14:27, n...@nobswolf.info wrote: You should give a complete programm so we can run exactly the same you do, like this: ?php $item_amount_in_store = 223; print ($item_amount_in_store); Please please please please don't do this!

Re: [PHP] Fwd: Wanted : Solid/documented/tests Nested Set Model class for mySQL.

2013-06-06 Thread shiplu
If you find one that you are going to use, dont forget to share it here. I'll need this on a certain phase of my current project. -- Shiplu.Mokadd.im ImgSign.com | A dynamic signature machine Innovation distinguishes between follower and leader

Re: [PHP] Fwd: PHP Enterprise Bananas

2012-11-07 Thread Ben Edwards
Thanks everybody, looks like I was going down a blind alley, we can just run stuff from cron. Ben On 6 November 2012 17:50, Jim Lucas li...@cmsws.com wrote: On 11/06/2012 05:03 AM, Ben Edwards wrote: Not sure if this was some type of joke but came across it a while ago. We have some PHP

[PHP] Fwd: PHP Enterprise Bananas

2012-11-06 Thread Ben Edwards
Not sure if this was some type of joke but came across it a while ago. We have some PHP we want to move from a site to a cron. Is this the answer or is there a better way (that does not involve re-writing code in another language). Cant find a home page for the project, maybe it is defunct.

Re: [PHP] Fwd: PHP Enterprise Bananas

2012-11-06 Thread Bastien
Bastien Koert On 2012-11-06, at 8:03 AM, Ben Edwards list4...@gmail.com wrote: Not sure if this was some type of joke but came across it a while ago. We have some PHP we want to move from a site to a cron. Is this the answer or is there a better way (that does not involve re-writing code

Re: [PHP] Fwd: PHP Enterprise Bananas

2012-11-06 Thread Jim Lucas
On 11/06/2012 05:03 AM, Ben Edwards wrote: Not sure if this was some type of joke but came across it a while ago. We have some PHP we want to move from a site to a cron. Is this the answer or is there a better way (that does not involve re-writing code in another language). Cant find a home

[PHP] Fwd: [PHP-DB] Prepared Statements - Search

2012-09-13 Thread tamouse mailing lists
Crud, forgot to include list. -- Forwarded message -- From: tamouse mailing lists tamouse.li...@gmail.com Date: Thu, Sep 13, 2012 at 10:31 PM Subject: Re: [PHP-DB] Prepared Statements - Search To: erosenb...@hygeiabiomedical.com On Thu, Sep 13, 2012 at 7:09 PM, Ethan Rosenberg,

[PHP] Fwd: i, em, strong and b in html5h

2011-08-11 Thread Grega Leskovšek
There was a topic on that a while ago and I am now reading Introducing HTML 5 from Bruce Lawson and Remy Sharp (pages 58-59) in mental hospital. It is not so bad as it seems, but I do not read email every day. They do not have wireless :( All four are valid in html5: em and strong marks up for

Re: [PHP] Fwd: ezmlm warning

2011-07-21 Thread With No Name
On Wed, July 20, 2011 11:00 am, Tamara Temple wrote: Um... what's going on here? Why would google mail be bouncing?? I have gotten the same ezmlm message for my account, but I have ask my provider (she is on th list too) and there are no errors in then Server Logs... Greetings KK -- PHP

Re: [PHP] Fwd: ezmlm warning

2011-07-21 Thread With No Name
On Wed, July 20, 2011 5:00 pm, Jim Lucas wrote: 1. http://www.mxtoolbox.com/SuperTool.aspx?action=blacklist%3a76.75.200.58 This say all: SORBS -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Fwd: ezmlm warning

2011-07-21 Thread Daniel Brown
On Thu, Jul 21, 2011 at 05:22, With No Name withnon...@tdwave.net wrote: On Wed, July 20, 2011 5:00 pm, Jim Lucas wrote: 1. http://www.mxtoolbox.com/SuperTool.aspx?action=blacklist%3a76.75.200.58 This say all:  SORBS Everyone got the ezmlm warnings because of this message:

[PHP] Fwd: ezmlm warning

2011-07-20 Thread Tamara Temple
Um... what's going on here? Why would google mail be bouncing?? Begin forwarded message: From: php-general-h...@lists.php.net Date: July 20, 2011 1:08:54 AM CDT To: tamouse.li...@gmail.com Subject: ezmlm warning Hi! This is the ezmlm program. I'm managing the php-general@lists.php.net

Re: [PHP] Fwd: ezmlm warning

2011-07-20 Thread Lester Caine
Tamara Temple wrote: Um... what's going on here? Why would google mail be bouncing?? Happens quite often ... just means that an email server has hickupped somewhere so an email addressed to you has not got through '76.75.200.58' which I think is the same machine address on the message a

Re: [PHP] Fwd: ezmlm warning

2011-07-20 Thread Midhun Girish
On Wed, Jul 20, 2011 at 2:41 PM, Lester Caine les...@lsces.co.uk wrote: Tamara Temple wrote: Um... what's going on here? Why would google mail be bouncing?? Happens quite often ... just means that an email server has hickupped somewhere so an email addressed to you has not got through

Re: [PHP] Fwd: ezmlm warning

2011-07-20 Thread Louis Huppenbauer
got the same problem today mayhabs gmail had a small problem... who knows ;) 2011/7/20 Lester Caine les...@lsces.co.uk Tamara Temple wrote: Um... what's going on here? Why would google mail be bouncing?? Happens quite often ... just means that an email server has hickupped somewhere so an

Re: [PHP] Fwd: ezmlm warning

2011-07-20 Thread Sotiris Katsaniotis
same here! On Wed, Jul 20, 2011 at 12:23 PM, Louis Huppenbauer louis.huppenba...@gmail.com wrote: got the same problem today mayhabs gmail had a small problem... who knows ;) 2011/7/20 Lester Caine les...@lsces.co.uk Tamara Temple wrote: Um... what's going on here? Why would google mail

Re: [PHP] Fwd: ezmlm warning

2011-07-20 Thread Ashley Sheridan
Louis Huppenbauer louis.huppenba...@gmail.com wrote: got the same problem today mayhabs gmail had a small problem... who knows ;) 2011/7/20 Lester Caine les...@lsces.co.uk Tamara Temple wrote: Um... what's going on here? Why would google mail be bouncing?? Happens quite often ... just

Re: [PHP] Fwd: ezmlm warning

2011-07-20 Thread Tim Thorburn
On 7/20/2011 6:19 AM, Ashley Sheridan wrote: Louis Huppenbauerlouis.huppenba...@gmail.com wrote: got the same problem today mayhabs gmail had a small problem... who knows ;) 2011/7/20 Lester Caineles...@lsces.co.uk Tamara Temple wrote: Um... what's going on here? Why would google mail

RE: [PHP] Fwd: ezmlm warning

2011-07-20 Thread Jay Blanchard
[snip] I got it too, so its not just limited to gmail. Maybe a server in between not working correctly. I'm in the UK, are the rest of you who had problems this way too? [/snip] I'm in Texas and got it. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP] Fwd: ezmlm warning

2011-07-20 Thread Jan Reiter
Hi, I'm in Germany and I got it, too. I get those about once in 6 month ... nothing to worry about, is it?? Regards Original-Nachricht Datum: Wed, 20 Jul 2011 07:12:58 -0400 Von: Tim Thorburn immor...@nwconx.net An: php-general@lists.php.net Betreff: Re: [PHP] Fwd: ezmlm

Re: [PHP] Fwd: ezmlm warning

2011-07-20 Thread George Langley
On 2011-07-20, at 5:40 AM, Jan Reiter wrote: Hi, I'm in Germany and I got it, too. I get those about once in 6 month ... nothing to worry about, is it?? Regards Got it here: Canada with Shaw ISP. But am getting this thread now, so assume it's fixed?

Re: [PHP] Fwd: ezmlm warning

2011-07-20 Thread Jim Lucas
People, it isn't a problem with your mail server, it is a problem with the lists.php.net IP address. It got on another SPAM list. I had to modify my SPAM filtering to allow it through a few years ago. Currently it is listed on [1], and [2] If I had to guess, qmail had an internal error and had

[PHP] Fwd: ezmlm warning

2011-07-20 Thread Tamara Temple
This was the message everyone got, I assume? Begin forwarded message: From: php-general-h...@lists.php.net Date: July 20, 2011 1:08:54 AM CDT To: tamouse.li...@gmail.com Subject: ezmlm warning Hi! This is the ezmlm program. I'm managing the php-general@lists.php.net mailing list. I'm working

答复: [PHP] Fwd: ezmlm warning

2011-07-20 Thread taomin
I am in China. I got it too. It seems like we can do nothing with it. Right? -- This was the message everyone got, I assume? Begin forwarded message: From: php-general-h...@lists.php.net Date: July 20, 2011 1:08:54 AM CDT To:

Re: [PHP] Fwd: Mail delivery failed: returning message to sender

2010-11-02 Thread Nathan Rixham
Ben Brentlinger wrote: it could be that you tried a cheap hosting account with a company that have a bulk mailing script meant for sending spam. I can imagine a spammer hijacking your site to send malware from it, one of the more likely possibilities especially if you have a hosting account with

Re: [PHP] Fwd: Mail delivery failed: returning message to sender

2010-11-02 Thread Steve Staples
On Tue, 2010-11-02 at 11:10 +, Nathan Rixham wrote: Ben Brentlinger wrote: it could be that you tried a cheap hosting account with a company that have a bulk mailing script meant for sending spam. I can imagine a spammer hijacking your site to send malware from it, one of the more

Re: [PHP] Fwd: Mail delivery failed: returning message to sender

2010-11-01 Thread Ashley Sheridan
On Sun, 2010-10-31 at 20:06 -0500, Tamara Temple wrote: Is this something I need to worry about?? Is my mail sending some malware?? Begin forwarded message: From: Mail Delivery Subsystem mailer-dae...@immosky.ch Date: October 31, 2010 7:37:54 PM CDT To: Tamara Temple

Re: [PHP] Fwd: Mail delivery failed: returning message to sender

2010-11-01 Thread Ben Brentlinger
it could be that the person whom you tried email has reached the quota on their inbox. It's also possible that the person you tried emailing gave you a fake email address and it's also possible that your domain might be hosted on a cheap hosting account with a company that has been known for

Re: [PHP] Fwd: Mail delivery failed: returning message to sender

2010-11-01 Thread a...@ashleysheridan.co.uk
: [PHP] Fwd: Mail delivery failed: returning message to sender To: php-general@lists.php.net it could be that the person whom you tried email has reached the quota on their inbox. It's also possible that the person you tried emailing gave you a fake email address and it's also possible that your

Re: [PHP] Fwd: Mail delivery failed: returning message to sender

2010-11-01 Thread Ben Brentlinger
message - From: Ben Brentlinger b...@benbrent.com Date: Mon, Nov 1, 2010 08:29 Subject: [PHP] Fwd: Mail delivery failed: returning message to sender To: php-general@lists.php.net it could be that the person whom you tried email has reached the quota on their inbox. It's also possible

Re: [PHP] Fwd: Mail delivery failed: returning message to sender

2010-11-01 Thread TR Shaw
Temple tamouse.li...@gmail.com Date: October 31, 2010 9:06:01 PM EDT To: PHP General php-general@lists.php.net Subject: [PHP] Fwd: Mail delivery failed: returning message to sender Is this something I need to worry about?? Is my mail sending some malware?? Begin forwarded message: From: Mail

Re: [PHP] Fwd: Mail delivery failed: returning message to sender

2010-11-01 Thread David McGlone
On Mon, 2010-11-01 at 04:29 -0400, Ben Brentlinger wrote: it could be that the person whom you tried email has reached the quota on their inbox. It's also possible that the person you tried emailing gave you a fake email address and it's also possible that your domain might be hosted on a

Re: [PHP] Fwd: Mail delivery failed: returning message to sender

2010-11-01 Thread Daniel P. Brown
On Sun, Oct 31, 2010 at 21:06, Tamara Temple tamouse.li...@gmail.com wrote: Is this something I need to worry about?? Is my mail sending some malware?? No, you're safe in this case. sascha.br...@immosky.ch   (reason: 550 This message contains malware

Re: [PHP] Fwd: Mail delivery failed: returning message to sender

2010-11-01 Thread Daniel P. Brown
On Mon, Nov 1, 2010 at 04:29, Ben Brentlinger b...@benbrent.com wrote: should be ok.  If you do, though, and you're not sure who to switch to, I'd recommend hostgator http://secure.hostgator.com/%7Eaffiliat/cgi-bin/affiliates/clickthru.cgi?id=?php echo

[PHP] Fwd: Mail delivery failed: returning message to sender

2010-10-31 Thread Tamara Temple
Is this something I need to worry about?? Is my mail sending some malware?? Begin forwarded message: From: Mail Delivery Subsystem mailer-dae...@immosky.ch Date: October 31, 2010 7:37:54 PM CDT To: Tamara Temple tamouse.li...@gmail.com Subject: Mail delivery failed: returning message to

[PHP] Fwd: [PHP-DB] always the logic that messes me up.... Database fun!

2010-07-20 Thread Jason Pruim
Hey Everyone, I know it's not strictly on topic but the php-db list hasn't responded and I haven't gotten any farther :) So please read below and earn a free beer for anyone that can help me, and can make it to Florida :) Begin forwarded message: From: Jason Pruim

[PHP] Fwd: Medical Task Force

2010-04-04 Thread Rene Veerman
hey, i did not fake that cc header on my last mail. i just hit reply-all and added php-general because i find it significant for this list too.. and guys, i'm very very sorry to have ever used walk over to you-language against fellow programmers, i'll try to refrain from such behaviour in the

Re: [PHP] Fwd: Medical Task Force

2010-04-04 Thread Matty Sarro
Hey, not sure how comprehensive you're looking to be but for health informatics there are a number of hl7 and PACS tools out there which are open source, most are just a google search away. -matty On Apr 4, 2010 11:23 PM, Rene Veerman rene7...@gmail.com wrote: hey, i did not fake that cc header

[PHP] Fwd: FACEBOOK MALWARE BOTNET

2010-03-23 Thread Allen McCabe
*Importance:* High All: If you are a Facebook user, you may have recently received an email with the subject: *Facebook Password Reset Confirmation Customer Support. **The *address of the sender is spoofed to display supp...@facebook.com *THIS IS MALWARE BOTNET – DO NOT OPEN THIS

[PHP] Fwd: Current PHP Global Network Statistics

2009-09-01 Thread Daniel Brown
Guys and gals (particularly those of you interested in the trends and metrics of PHP), here's a forwarded copy of an email I just fired off to the mirrors around the world after completion of the first of three phases of an upgrade operation. Where does your server stand? What about your

Re: [PHP] Fwd: Current PHP Global Network Statistics

2009-09-01 Thread Eddie Drapkin
On Tue, Sep 1, 2009 at 2:12 PM, Daniel Browndanbr...@php.net wrote:    Guys and gals (particularly those of you interested in the trends and metrics of PHP), here's a forwarded copy of an email I just fired off to the mirrors around the world after completion of the first of three phases of an

Re: [PHP] Fwd: Current PHP Global Network Statistics

2009-09-01 Thread Daniel Brown
On Tue, Sep 1, 2009 at 15:10, Eddie Drapkinoorza...@gmail.com wrote: Why is 5.1.6 such a popular release for the PHP mirrors? It's a common distro release, particular for RPM's (CentOS, Fedora, RHEL). In fact, that's why I set that as the minimum version in the requirements during the

[PHP] Fwd: catching up

2009-04-16 Thread German Geek
just in case/tim(e). Yes its me :) Tim-Hinnerk Heuer http://www.ihostnz.com Mitch Hedberghttp://www.brainyquote.com/quotes/authors/m/mitch_hedberg.html - I drank some boiling water because I wanted to whistle. -- Forwarded message -- From: Tim | iHostNZ t...@ihostnz.com Date:

[PHP] Fwd: A fatal error with php virtual cron

2009-03-25 Thread אלמוג בקו
Hello, There is some week than I trying to solve a critical error on my VirtualCron script. *First of all what is VirtualCron?:* Virtual cron is script that`s call(http request) himself and doing the jobs by the time(like a cron-jobs on linux, but this script build on php and its make it

Re: [PHP] Fwd: A fatal error with php virtual cron

2009-03-25 Thread Igor Escobar
Maybe your problem are in the way you're calling your program by socket. If you show me this part of the code, maybe i can help you. Regards, Igor Escobar systems analyst interface designer www . igorescobar . com On Wed, Mar 25, 2009 at 4:01 PM, אלמוג בקו almog.b...@gmail.com wrote:

Re: [PHP] Fwd: A fatal error with php virtual cron

2009-03-25 Thread אלמוג בקו
This is a part of the class: private function _request() { //URL information $url= http://.$_SERVER['HTTP_HOST'] . $_SERVER['PHP_SELF']; $url_info= parse_url($url); //Fixing port if(!isset($url_info['port'])) $url_info['port']=80; //Send Cron-data $data

Re: [PHP] Fwd: A fatal error with php virtual cron

2009-03-25 Thread Igor Escobar
Try the ignore_user_abort(true); Regards, Igor Escobar systems analyst interface designer www . igorescobar . com On Wed, Mar 25, 2009 at 4:21 PM, אלמוג בקו almog.b...@gmail.com wrote: This is a part of the class: private function _request() { //URL information $url=

Re: [PHP] Fwd: A fatal error with php virtual cron

2009-03-25 Thread אלמוג בקו
I already wrote that.. ignore_user_abort(true); set_time_limit(0); sleep(1); * צור איתי קשר:* http://www.facebook.com/profile.php?id=682327963 On Wed, Mar 25, 2009 at 9:38 PM, Igor Escobar titiolin...@gmail.com wrote: Try the ignore_user_abort(true); Regards,

Re: [PHP] Fwd: A fatal error with php virtual cron

2009-03-25 Thread Igor Escobar
Oh, Sorry, I had not seen. Well, I don't see anything wrong in your code, but maybe...if you find in your apache config file, you can found for something similar to your problem ... Sorry can't help you. Regards, Igor Escobar systems analyst interface designer www . igorescobar . com On

Re: [PHP] Fwd: A fatal error with php virtual cron

2009-03-25 Thread Shawn McKenzie
אלמוג בקו wrote: This is a part of the class: private function _request() { //URL information $url= http://.$_SERVER['HTTP_HOST'] . $_SERVER['PHP_SELF']; $url_info= parse_url($url); //Fixing port if(!isset($url_info['port'])) $url_info['port']=80;

Re: [PHP] Fwd: A fatal error with php virtual cron

2009-03-25 Thread אלמוג בקו
my script(cron.php) check the job and call by http-request himself(cron.php). I already solve the timezone problem, I set the timezone to Israel`s timezone[works fine]: //Set TimeZone date_default_timezone_set(timezone_name_from_abbr(, 2*60*60, null)); * צור איתי

Re: [PHP] Fwd: A fatal error with php virtual cron

2009-03-25 Thread Shawn McKenzie
אלמוג בקו wrote: my script(cron.php) check the job and call by http-request himself(cron.php). I already solve the timezone problem, I set the timezone to Israel`s timezone[works fine]: //Set TimeZone date_default_timezone_set(timezone_name_from_abbr(, 2*60*60, null)); I was talking

Re: [PHP] Fwd: A fatal error with php virtual cron

2009-03-25 Thread אלמוג בקו
amm.. i don`t really know what is fast-cgi. well I think I don't use it. however, thanks. * צור איתי קשר:* http://www.facebook.com/profile.php?id=682327963 On Wed, Mar 25, 2009 at 10:33 PM, Shawn McKenzie nos...@mckenzies.netwrote: אלמוג בקו wrote: my

Re: [PHP] [Fwd] How to make a secured login form

2009-02-14 Thread German Geek
Have a look at my post called for the security minded web developer - secure way to login?. It seems like a similar idea with less overhead. Regards, Tim Tim-Hinnerk Heuer http://www.ihostnz.com Joan Rivers - Never floss with a stranger. 2009/2/14 Virgilio Quilario virgilio.quila...@gmail.com

[PHP] [Fwd] How to make a secured login form

2009-02-13 Thread Rene Veerman
Hi, I'm cross-posting this (from jquery-en js mailinglist) because it's something that i think is relevant for this list too.. You can ignore the jQuery in it, since all the jquery calls can be replaced with document.getElementById(). I have secured the login form for my CMS with a

Re: [PHP] [Fwd] How to make a secured login form

2009-02-13 Thread Virgilio Quilario
I have secured the login form for my CMS with a challenge-response thing that encrypts both username and password with the (login-attempts-counted) challenge (and; here's my problem: a system hash) sent by the server (it would end up in your html as a hidden inputs, or as part of a json

[PHP] Fwd: GD library for creating tables

2008-12-13 Thread Osman Osman
Hello, I'm looking for a library in PHP that will let me easily create tables programmatically. It would be great if I can just specify information about the rows/columns, what each cell should contain, etc, and the table would get created automatically. I should be able to do anything I would

Re: [PHP] Fwd: GD library for creating tables

2008-12-13 Thread Tim-Hinnerk Heuer
On Sat, 2008-12-13 at 10:18 +0200, Osman Osman wrote: Hello, I'm looking for a library in PHP that will let me easily create tables programmatically. It would be great if I can just specify information about the rows/columns, what each cell should contain, etc, and the table would get

Re: [PHP] Fwd: GD library for creating tables

2008-12-13 Thread Osman Osman
Hey Tim, Thanks for the reply. I'm actually looking for something to do that exactly, but output it as an image (via GD, imageMagick, etc). I should've been clearer; I mentioned it in the subject but not the actual e-mail. There's actually a PEAR library that does that for HTML, HTML_Table:

[PHP] Fwd: strrev() for persian language!

2008-09-29 Thread shahrzad khorrami
hi all, is there any function to return us the lanuage of a word in the sentence? for example : My name is شهرزاد . when it sees شهرزاد notice that is a persian language. Thanks

[PHP] [Fwd: Problem of enable ( show ) Personal MailBox Quota Usage]

2008-09-21 Thread edwardspl
Dear All, Would you mind to help more ? Thanks ! Edward. Original Message Subject:Problem of enable ( show ) Personal MailBox Quota Usage Date: Sat, 06 Sep 2008 21:39:50 +0800 From: [EMAIL PROTECTED] To: IMP [EMAIL PROTECTED] CC: [EMAIL PROTECTED] [EMAIL

[PHP] [Fwd: Re: [DOC-BUGS] #46054 [NEW]: comment of addcslashes 'A..z' is wrong]

2008-09-12 Thread Maciek Sokolewicz
Forwarding to php-general. Original Message Subject: Re: [DOC-BUGS] #46054 [NEW]: comment of addcslashes 'A..z' is wrong Date: Fri, 12 Sep 2008 10:51:45 -0400 From: [EMAIL PROTECTED] (Tanveer Bhurani) To: miau dot jp at gmail dot com [EMAIL PROTECTED] Newsgroups: php.doc.bugs

Re: [PHP] [Fwd: Re: [DOC-BUGS] #46054 [NEW]: comment of addcslashes 'A..z' is wrong]

2008-09-12 Thread Jochem Maas
Maciek Sokolewicz schreef: Forwarding to php-general. I think /dev/null would have been a better place. wtf is anyone supposed to do with this? (apart from ignore it?) Original Message Subject: Re: [DOC-BUGS] #46054 [NEW]: comment of addcslashes 'A..z' is wrong Date:

[PHP] Fwd: How to enable php-mysqli on linux

2008-07-08 Thread Kapil Kapil
Hi How can we enable php-mysqli support on linux machine using yum etc., without reinstalling php again? Also how to check it - Is php-mysqli package is present or not? Thanks Kapil

Re: [PHP] Fwd: How to enable php-mysqli on linux

2008-07-08 Thread Per Jessen
Kapil Kapil wrote: Hi How can we enable php-mysqli support on linux machine using yum etc., without reinstalling php again? Just install the appropriate package. Also how to check it - Is php-mysqli package is present or not? Check output from phpinfo(). /Per Jessen, Zürich -- PHP

[PHP] Fwd: [PHP-DOC] ftp help

2008-07-07 Thread Thiago H. Pojda
Forwarding to correct list. -- Forwarded message -- From: Dan [EMAIL PROTECTED] Date: Fri, Jul 4, 2008 at 1:56 PM Subject: [PHP-DOC] ftp help To: [EMAIL PROTECTED] I am using a php script to connect to an ftp server. However, the server requires a password change every 90 days.

Re: [PHP] Fwd: [PHP-DOC] ftp help

2008-07-07 Thread metastable
Thiago H. Pojda wrote: Forwarding to correct list. -- Forwarded message -- From: Dan [EMAIL PROTECTED] Date: Fri, Jul 4, 2008 at 1:56 PM Subject: [PHP-DOC] ftp help To: [EMAIL PROTECTED] I am using a php script to connect to an ftp server. However, the server requires a

Re: [PHP] Fwd: [PHP-DOC] ftp help

2008-07-07 Thread metastable
Thiago H. Pojda wrote: Forwarding to correct list. -- Forwarded message -- From: Dan [EMAIL PROTECTED] Date: Fri, Jul 4, 2008 at 1:56 PM Subject: [PHP-DOC] ftp help To: [EMAIL PROTECTED] I am using a php script to connect to an ftp server. However, the server requires a

Re: [PHP] Fwd: Posting Summary for Week Ending 25 January, 2008: [EMAIL PROTECTED]

2008-01-29 Thread Zoltán Németh
2008. 01. 28, hétfő keltezéssel 13.35-kor Daniel Brown ezt írta: Whoops :-x The odd thing is, the characters came out fine during the tests, and because some changes were made to the script during the week, some people will show up two or more times (read: people with

[PHP] Fwd: Posting Summary for Week Ending 25 January, 2008: [EMAIL PROTECTED]

2008-01-28 Thread Daniel Brown
Whoops :-x The odd thing is, the characters came out fine during the tests, and because some changes were made to the script during the week, some people will show up two or more times (read: people with non-English characters in their names). I've been pretty sick all week, so I

[PHP] Fwd: Undelivered Mail Returned to Sender

2007-12-18 Thread Daniel Brown
Of course, this could be part of his problem, too -- Forwarded message -- From: Mail Delivery System [EMAIL PROTECTED] Date: Dec 18, 2007 9:49 AM Subject: Undelivered Mail Returned to Sender To: [EMAIL PROTECTED] This is the mail system at host mx3.messagingengine.com.

[PHP] Fwd: enhanced_list_box

2007-11-13 Thread kNish
-- Forwarded message -- From: kNish [EMAIL PROTECTED] Date: Nov 12, 2007 3:50 PM Subject: enhanced_list_box To: php-general@lists.php.net Hi, I am using this function enhanced_list_box. This works fine. Except the return value is None. How is it possible for it to

Re: [PHP] Fwd: Returned mail: User unknown

2007-11-13 Thread Daniel Brown
On Nov 13, 2007 1:40 AM, Jim Lucas [EMAIL PROTECTED] wrote: [EMAIL PROTECTED] wrote: PLEASE I have like 50 from it so far. -Original Message- From: Daniel Brown [mailto:[EMAIL PROTECTED] Sent: Monday, November 12, 2007 5:31 PM To: php-general List Subject: [PHP] Fwd

Re: [PHP] Fwd: Returned mail: User unknown

2007-11-13 Thread tedd
At 10:40 PM -0800 11/12/07, Jim Lucas wrote: -snip- That is funny, I have not received one bounce message. Jim Same here, but my subscription to this list is via my gmail account -- maybe that filters it for me. Cheers, tedd -- --- http://sperling.com http://ancientstones.com

Re: [PHP] Fwd: Returned mail: User unknown

2007-11-13 Thread Daniel Brown
On Nov 13, 2007 10:14 AM, tedd [EMAIL PROTECTED] wrote: At 10:40 PM -0800 11/12/07, Jim Lucas wrote: -snip- That is funny, I have not received one bounce message. Jim Same here, but my subscription to this list is via my gmail account -- maybe that filters it for me. Cheers, tedd

Re: [PHP] Fwd: Returned mail: User unknown

2007-11-13 Thread Philip Thompson
, November 12, 2007 5:31 PM To: php-general List Subject: [PHP] Fwd: Returned mail: User unknown Can an admin or mod please force an unsubscribe on [EMAIL PROTECTED]? I've been getting bounces all day, and I'm sure I'm not the only one. Every message I send to the list

[PHP] Fwd: Returned mail: User unknown

2007-11-12 Thread Daniel Brown
Can an admin or mod please force an unsubscribe on [EMAIL PROTECTED]? I've been getting bounces all day, and I'm sure I'm not the only one. Every message I send to the list gives me one of these. Either that or we can just make them exceed their ISP mail cap :D ? $to =

RE: [PHP] Fwd: Returned mail: User unknown

2007-11-12 Thread admin
PLEASE I have like 50 from it so far. -Original Message- From: Daniel Brown [mailto:[EMAIL PROTECTED] Sent: Monday, November 12, 2007 5:31 PM To: php-general List Subject: [PHP] Fwd: Returned mail: User unknown Can an admin or mod please force an unsubscribe on [EMAIL PROTECTED

Re: [PHP] Fwd: Returned mail: User unknown

2007-11-12 Thread Jim Lucas
[EMAIL PROTECTED] wrote: PLEASE I have like 50 from it so far. -Original Message- From: Daniel Brown [mailto:[EMAIL PROTECTED] Sent: Monday, November 12, 2007 5:31 PM To: php-general List Subject: [PHP] Fwd: Returned mail: User unknown Can an admin or mod please force

Re: [PHP] [Fwd: Attachment Size and Memory limit with php and FC6 System]

2007-09-28 Thread edwardspl
Jim Lucas wrote: [EMAIL PROTECTED] wrote: Jim Lucas wrote: [EMAIL PROTECTED] wrote: Jim Lucas wrote: [EMAIL PROTECTED] wrote: post_max_size = 10M max_execution_time = 3600 ; Maximum execution time of each script, in seconds max_input_time = 3600 ; Maximum amount of time each

Re: [PHP] [Fwd: Attachment Size and Memory limit with php and FC6 System]

2007-09-28 Thread Jim Lucas
[EMAIL PROTECTED] wrote: Hello, Afte update the config of php, then reboot the Web Server, but horde / imp show us still 2MB limit... So, I don't understand where is the problem... Hope more any help for us... Thanks ! Edward. The 2MB limit is a config option of Horde, NOT php Did

Re: [PHP] [Fwd: Attachment Size and Memory limit with php and FC6 System]

2007-09-28 Thread edwardspl
Jim Lucas wrote: [EMAIL PROTECTED] wrote: Hello, Afte update the config of php, then reboot the Web Server, but horde / imp show us still 2MB limit... So, I don't understand where is the problem... Hope more any help for us... Thanks ! Edward. The 2MB limit is a config option of

Re: [PHP] [Fwd: Attachment Size and Memory limit with php and FC6 System]

2007-09-27 Thread edwardspl
Jim Lucas wrote: [EMAIL PROTECTED] wrote: Jim Lucas wrote: [EMAIL PROTECTED] wrote: post_max_size = 10M max_execution_time = 3600 ; Maximum execution time of each script, in seconds max_input_time = 3600 ; Maximum amount of time each script may spend parsing request data

Re: [PHP] [Fwd: Attachment Size and Memory limit with php and FC6 System]

2007-09-27 Thread Jim Lucas
[EMAIL PROTECTED] wrote: Jim Lucas wrote: [EMAIL PROTECTED] wrote: Jim Lucas wrote: [EMAIL PROTECTED] wrote: post_max_size = 10M max_execution_time = 3600 ; Maximum execution time of each script, in seconds max_input_time = 3600 ; Maximum amount of time each script may

[PHP] [Fwd: Attachment Size and Memory limit with php and FC6 System]

2007-09-26 Thread edwardspl
Dear All, Would you mind to help ? Thanks ! Edward. Original Message Subject:Attachment Size and Memory limit with php and FC6 System Date: Thu, 27 Sep 2007 00:28:03 +0800 From: [EMAIL PROTECTED] Reply-To: For users of Fedora [EMAIL PROTECTED] To: IMP

Re: [PHP] [Fwd: Attachment Size and Memory limit with php and FC6 System]

2007-09-26 Thread Jim Lucas
[EMAIL PROTECTED] wrote: post_max_size = 10M max_execution_time = 3600 ; Maximum execution time of each script, in seconds max_input_time = 3600 ; Maximum amount of time each script may spend parsing request data memory_limit = 512M ; Maximum amount of memory a script may consume file_uploads =

Re: [PHP] [Fwd: Attachment Size and Memory limit with php and FC6 System]

2007-09-26 Thread edwardspl
Jim Lucas wrote: [EMAIL PROTECTED] wrote: post_max_size = 10M max_execution_time = 3600 ; Maximum execution time of each script, in seconds max_input_time = 3600 ; Maximum amount of time each script may spend parsing request data memory_limit = 512M ; Maximum amount of memory a script

  1   2   3   >