Re: [PHP] pup

2009-04-19 Thread Jim Lucas

Ashley Sheridan wrote:

On Fri, 2009-04-17 at 12:54 -0400, Bob McConnell wrote:

From: tedd

At 10:43 PM -0700 4/16/09, Jim Lucas wrote:

Have your elements setup like such:

 Room #1
 Room #2
 Room #3
 Room #4
 Room #5

Then on your processing page, you know that you have 5 rooms, 1 - 5.

With this information you can check to make sure that something

exists



Jim et al:

Try this:

 Room #1
 Room #2
 Room #3
 Room #4
 Room #5


if (isset($_POST['reserve']) )
{
foreach ($_POST['reserve'] as $key => $a)
   {
   echo("$key $a ");
   }
}

Here's the demo:

http://www.webbytedd.com//post-array1/index.php


Don't forget the  on the end of those input lines. I've seen too
many pages already where I had to fix that problem.

Bob McConnell


It shouldn't really be

 Room #1

but something like this:

 Room #1



Well, to quote the W3C Recommendation...
http://www.w3.org/TR/html401/interact/forms.html#h-17.9.1



  
First Name

  
Last Name




The label tag should reference the input via the for attribute.  Identifying 
the input tag by id attribute value.


And using the for attribute of the label tag in conjunction with the id
attribute of the input tag, you can separate the label and form element
entirely, which is sueful if you still use tables to line up your
forms! 



Ash
www.ashleysheridan.co.uk




--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] pup

2009-04-19 Thread ramesh.marimuthu

Thanks for your idea.

-Original Message-
From: Phpster [mailto:phps...@gmail.com]
Sent: Friday, April 17, 2009 5:39 PM
To: Ramesh Marimuthu (WT01 - Telecom Equipment)
Cc: ; ; 
Subject: Re: [PHP] pup



On Apr 17, 2009, at 1:06,  wrote:

>
> Thanks Jim. Is there a way to get the value of that unchecked box?
>
> -rummy
>
> -Original Message-
> From: Jim Lucas [mailto:li...@cmsws.com]
> Sent: Friday, April 17, 2009 10:35 AM
> To: Ramesh Marimuthu (WT01 - Telecom Equipment)
> Cc: geek...@gmail.com; php-general@lists.php.net
> Subject: Re: [PHP] pup
>
> ramesh.marimu...@wipro.com wrote:
>>
>> Hi,
>>
>> I'm new to php.
>> Say I have a check box which is checked already. Now I need to
>> uncheck
>
>> it and when I press the submit button, I should get the unchecked
> value.
>> Can anyone help me on this.
>>
>> One.php
>>
>> if($qry[0]!=$login_type)
>> {
>> echo "> style=background-color:#CC66CC>> value=a".$count." checked DISABLED />".$slot_value.""; }
>> else { echo "> style=background-color:#00>> value='--user ".$slot_value." --ne ".$nen." --timespec ".$slt."'
>> checked
>>> ".$slot_value."";
>> }
>>
>> One.php calls Two.php
>> Two.php
>>
>> $enable_slot= $_POST['enable'];
>> $uncheck_slot= $_POST['uncheck'];
>>
>> if ($enable_slot){
>> echo "$enable_slot";
>> foreach($enable_slot as &$a) {
>> echo "".$a." --unreserve";
>> }
>> }
>>
>> I get only the results only if checked. I think I'm doing a mistake
>> in
>
>> the code in red font.
>>
>> regards,
>> -rummy
>>
>>
>
> When you uncheck a checkbox in an HTML form, it will not be submitted.
>
> http://www.w3.org/TR/html401/interact/forms.html#checkbox
>
> The part on the above page talking about "only "on" checkbox controls
> can become successful." is the key here.
>
> The successful part links here:
>
> http://www.w3.org/TR/html401/interact/forms.html#successful-controls
>
> This explains that the definition of a successful checkbox submission
> is one that is  "on".
> To have a checkbox in the "on" state means that it has to be checked.
>
> So, any checkbox that is /not/ checked is considered "off" or
> "undefined" will not be submitted because it is not valid.
>
> Or something like that... :)
>
> Jim Lucas
>
> Please do not print this email unless it is absolutely necessary.
>
> The information contained in this electronic message and any
> attachments to this message are intended for the exclusive use of the
> addressee(s) and may contain proprietary, confidential or privileged
> information. If you are not the intended recipient, you should not
> disseminate, distribute or copy this e-mail. Please notify the sender
> immediately and destroy all copies of this message and any
> attachments.
>
> WARNING: Computer viruses can be transmitted via email. The recipient
> should check this email and any attachments for the presence of
> viruses. The company accepts no liability for any damage caused by any

> virus transmitted by this email.
>
> www.wipro.com
>
> --
> PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:
> http://www.php.net/unsub.php
>


What I do in this case is define it to unchecked in the php code and
then use the ternary operator to test it


$checkbox1 = 0;

$checkbox1 = (isset($_POST['check1'])) ? 1: 0 ;

Bastien

Please do not print this email unless it is absolutely necessary.

The information contained in this electronic message and any attachments to 
this message are intended for the exclusive use of the addressee(s) and may 
contain proprietary, confidential or privileged information. If you are not the 
intended recipient, you should not disseminate, distribute or copy this e-mail. 
Please notify the sender immediately and destroy all copies of this message and 
any attachments.

WARNING: Computer viruses can be transmitted via email. The recipient should 
check this email and any attachments for the presence of viruses. The company 
accepts no liability for any damage caused by any virus transmitted by this 
email.

www.wipro.com

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] pup

2009-04-17 Thread Ashley Sheridan
On Fri, 2009-04-17 at 12:54 -0400, Bob McConnell wrote:
> From: tedd
> > At 10:43 PM -0700 4/16/09, Jim Lucas wrote:
> >> Have your elements setup like such:
> >> 
> >>  Room #1
> >>  Room #2
> >>  Room #3
> >>  Room #4
> >>  Room #5
> >> 
> >> Then on your processing page, you know that you have 5 rooms, 1 - 5.
> >> 
> >> With this information you can check to make sure that something
> exists
> >> 
> >>  >> $rooms = range(1,5);
> >> for ( $i = 1; $i <= 5; $i++ ) {
> >>if ( isset( $_POST['reserve']['rm'.$i] ) {
> >># Room was checked
> >>} else {
> >># Room was NOT checked.
> >>}
> >> }
> >> ?>
> > 
> > Jim et al:
> > 
> > Try this:
> > 
> >  Room #1
> >  Room #2
> >  Room #3
> >  Room #4
> >  Room #5
> > 
> > 
> > if (isset($_POST['reserve']) )
> > {
> > foreach ($_POST['reserve'] as $key => $a)
> >{
> >echo("$key $a ");
> >}
> > }
> > 
> > Here's the demo:
> > 
> > http://www.webbytedd.com//post-array1/index.php
> > 
> 
> Don't forget the  on the end of those input lines. I've seen too
> many pages already where I had to fix that problem.
> 
> Bob McConnell
> 
It shouldn't really be

 Room #1

but something like this:

 Room #1

And using the for attribute of the label tag in conjunction with the id
attribute of the input tag, you can separate the label and form element
entirely, which is sueful if you still use tables to line up your
forms! 


Ash
www.ashleysheridan.co.uk


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] pup

2009-04-17 Thread Bob McConnell
From: tedd
> At 10:43 PM -0700 4/16/09, Jim Lucas wrote:
>> Have your elements setup like such:
>> 
>>  Room #1
>>  Room #2
>>  Room #3
>>  Room #4
>>  Room #5
>> 
>> Then on your processing page, you know that you have 5 rooms, 1 - 5.
>> 
>> With this information you can check to make sure that something
exists
>> 
>> > $rooms = range(1,5);
>> for ( $i = 1; $i <= 5; $i++ ) {
>>  if ( isset( $_POST['reserve']['rm'.$i] ) {
>>  # Room was checked
>>  } else {
>>  # Room was NOT checked.
>>  }
>> }
>> ?>
> 
> Jim et al:
> 
> Try this:
> 
>  Room #1
>  Room #2
>  Room #3
>  Room #4
>  Room #5
> 
> 
> if (isset($_POST['reserve']) )
> {
> foreach ($_POST['reserve'] as $key => $a)
>{
>echo("$key $a ");
>}
> }
> 
> Here's the demo:
> 
> http://www.webbytedd.com//post-array1/index.php
> 

Don't forget the  on the end of those input lines. I've seen too
many pages already where I had to fix that problem.

Bob McConnell

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] pup

2009-04-17 Thread tedd

At 10:43 PM -0700 4/16/09, Jim Lucas wrote:

Have your elements setup like such:

 Room #1
 Room #2
 Room #3
 Room #4
 Room #5

Then on your processing page, you know that you have 5 rooms, 1 - 5.

With this information you can check to make sure that something exists



Jim Lucas



Jim et al:

Try this:

 Room #1
 Room #2
 Room #3
 Room #4
 Room #5


if (isset($_POST['reserve']) )
   {
   foreach ($_POST['reserve'] as $key => $a)
  {
  echo("$key $a ");
  }
   }

Here's the demo:

http://www.webbytedd.com//post-array1/index.php

Cheers,

tedd

--
---
http://sperling.com  http://ancientstones.com  http://earthstones.com

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] pup

2009-04-17 Thread Phpster



On Apr 17, 2009, at 1:06,  wrote:



Thanks Jim. Is there a way to get the value of that unchecked box?

-rummy

-Original Message-
From: Jim Lucas [mailto:li...@cmsws.com]
Sent: Friday, April 17, 2009 10:35 AM
To: Ramesh Marimuthu (WT01 - Telecom Equipment)
Cc: geek...@gmail.com; php-general@lists.php.net
Subject: Re: [PHP] pup

ramesh.marimu...@wipro.com wrote:


Hi,

I'm new to php.
Say I have a check box which is checked already. Now I need to  
uncheck



it and when I press the submit button, I should get the unchecked

value.

Can anyone help me on this.

One.php

if($qry[0]!=$login_type)
{
echo "".$slot_value.""; }
else { echo "
".$slot_value."";

}

One.php calls Two.php
Two.php

$enable_slot= $_POST['enable'];
$uncheck_slot= $_POST['uncheck'];

if ($enable_slot){
echo "$enable_slot";
foreach($enable_slot as &$a) {
echo "".$a." --unreserve";
}
}

I get only the results only if checked. I think I'm doing a mistake  
in



the code in red font.

regards,
-rummy




When you uncheck a checkbox in an HTML form, it will not be submitted.

http://www.w3.org/TR/html401/interact/forms.html#checkbox

The part on the above page talking about "only "on" checkbox controls
can become successful." is the key here.

The successful part links here:

http://www.w3.org/TR/html401/interact/forms.html#successful-controls

This explains that the definition of a successful checkbox  
submission is

one that is  "on".
To have a checkbox in the "on" state means that it has to be checked.

So, any checkbox that is /not/ checked is considered "off" or
"undefined" will not be submitted because it is not valid.

Or something like that... :)

Jim Lucas

Please do not print this email unless it is absolutely necessary.

The information contained in this electronic message and any  
attachments to this message are intended for the exclusive use of  
the addressee(s) and may contain proprietary, confidential or  
privileged information. If you are not the intended recipient, you  
should not disseminate, distribute or copy this e-mail. Please  
notify the sender immediately and destroy all copies of this message  
and any attachments.


WARNING: Computer viruses can be transmitted via email. The  
recipient should check this email and any attachments for the  
presence of viruses. The company accepts no liability for any damage  
caused by any virus transmitted by this email.


www.wipro.com

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




What I do in this case is define it to unchecked in the php code and  
then use the ternary operator to test it



$checkbox1 = 0;

$checkbox1 = (isset($_POST['check1'])) ? 1: 0 ;

Bastien

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] pup

2009-04-17 Thread Alpár Török
2009/4/17 German Geek :
> From What i learned, yes you can write pup here. Does anyone print this
> mailing list? wtf?? i keep overestimating people's intelligence, im sorry!
> Tim-Hinnerk Heuer

It would be interested to see how  many times the Earth can be covered
or surrounded, with the printed version of this mailing list.

>
> http://www.ihostnz.com
> Charles de 
> Gaulle
> - "The better I get to know men, the more I find myself loving dogs."
>
> 2009/4/17 
>
>> Hi,
>>
>> I'm new to this list. Can I post PUP questions to this list?
>>
>> regards,
>> -ramesh
>>
>> P Save a tree...please don't print this e-mail unless you really need to
>>
>>
>> Please do not print this email unless it is absolutely necessary.
>>
>> The information contained in this electronic message and any attachments to
>> this message are intended for the exclusive use of the addressee(s) and may
>> contain proprietary, confidential or privileged information. If you are not
>> the intended recipient, you should not disseminate, distribute or copy this
>> e-mail. Please notify the sender immediately and destroy all copies of this
>> message and any attachments.
>>
>> WARNING: Computer viruses can be transmitted via email. The recipient
>> should check this email and any attachments for the presence of viruses. The
>> company accepts no liability for any damage caused by any virus transmitted
>> by this email.
>>
>> www.wipro.com
>>
>



-- 
Alpar Torok

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] pup

2009-04-16 Thread ramesh.marimuthu

Many Thanks Jim. Your idea worked.

-rummy

-Original Message-
From: Jim Lucas [mailto:li...@cmsws.com]
Sent: Friday, April 17, 2009 11:13 AM
To: Ramesh Marimuthu (WT01 - Telecom Equipment); PHP General List;
geek...@gmail.com
Subject: Re: [PHP] pup

ramesh.marimu...@wipro.com wrote:
> I'm developing a slot reservation page. It shows checked boxes for the

> currently logged user. If he likes to unreserve it, he should uncheck
> it. For other users it is disabled. Also a currently logged user can
> book another slot.
>
> Also when I use hidden types, only if all the checked boxes are
> unchecked, I could get the hidden values.
>
> -rummy
>

You could use an array system in your checkbox form section.?

Basically, take your check boxes.  I am assuming that you have a defined
list of what is expected?  Correct?

Have your elements setup like such:



 Room #1  Room #2  Room #3  Room #4  Room #5


Then on your processing page, you know that you have 5 rooms, 1 - 5.

With this information you can check to make sure that something exists



Something like that should do the trick.

Jim Lucas

Please do not print this email unless it is absolutely necessary.

The information contained in this electronic message and any attachments to 
this message are intended for the exclusive use of the addressee(s) and may 
contain proprietary, confidential or privileged information. If you are not the 
intended recipient, you should not disseminate, distribute or copy this e-mail. 
Please notify the sender immediately and destroy all copies of this message and 
any attachments.

WARNING: Computer viruses can be transmitted via email. The recipient should 
check this email and any attachments for the presence of viruses. The company 
accepts no liability for any damage caused by any virus transmitted by this 
email.

www.wipro.com

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] pup

2009-04-16 Thread Jim Lucas

ramesh.marimu...@wipro.com wrote:

I'm developing a slot reservation page. It shows checked boxes for the
currently logged user. If he likes to unreserve it, he should uncheck
it. For other users it is disabled. Also a currently logged user can
book another slot.

Also when I use hidden types, only if all the checked boxes are
unchecked, I could get the hidden values.

-rummy



You could use an array system in your checkbox form section.?

Basically, take your check boxes.  I am assuming that you have a defined list 
of what is expected?  Correct?

Have your elements setup like such:



 Room #1
 Room #2
 Room #3
 Room #4
 Room #5


Then on your processing page, you know that you have 5 rooms, 1 - 5.

With this information you can check to make sure that something exists



Something like that should do the trick.

Jim Lucas

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] pup

2009-04-16 Thread Jim Lucas

ramesh.marimu...@wipro.com wrote:
Thanks Jim. Is there a way to get the value of that unchecked box? 


-rummy

-Original Message-
From: Jim Lucas [mailto:li...@cmsws.com] 
Sent: Friday, April 17, 2009 10:35 AM

To: Ramesh Marimuthu (WT01 - Telecom Equipment)
Cc: geek...@gmail.com; php-general@lists.php.net
Subject: Re: [PHP] pup

ramesh.marimu...@wipro.com wrote:
 
Hi,
 
I'm new to php.

Say I have a check box which is checked already. Now I need to uncheck



it and when I press the submit button, I should get the unchecked

value.

Can anyone help me on this.

One.php

if($qry[0]!=$login_type)
{
echo "style=background-color:#CC66CC>value=a".$count." checked DISABLED />".$slot_value.""; } 
else { echo "style=background-color:#00>value='--user ".$slot_value." --ne ".$nen." --timespec ".$slt."' 
checked

".$slot_value."";

}

One.php calls Two.php
Two.php

$enable_slot= $_POST['enable'];
$uncheck_slot= $_POST['uncheck'];

if ($enable_slot){
echo "$enable_slot";
foreach($enable_slot as &$a) {
echo "".$a." --unreserve";
}
}

I get only the results only if checked. I think I'm doing a mistake in



the code in red font.

regards,
-rummy

 


When you uncheck a checkbox in an HTML form, it will not be submitted.

http://www.w3.org/TR/html401/interact/forms.html#checkbox

The part on the above page talking about "only "on" checkbox controls
can become successful." is the key here.

The successful part links here:

http://www.w3.org/TR/html401/interact/forms.html#successful-controls

This explains that the definition of a successful checkbox submission is
one that is  "on".
To have a checkbox in the "on" state means that it has to be checked.

So, any checkbox that is /not/ checked is considered "off" or
"undefined" will not be submitted because it is not valid.

Or something like that... :)

Jim Lucas

Please do not print this email unless it is absolutely necessary. 

The information contained in this electronic message and any attachments to this message are intended for the exclusive use of the addressee(s) and may contain proprietary, confidential or privileged information. If you are not the intended recipient, you should not disseminate, distribute or copy this e-mail. Please notify the sender immediately and destroy all copies of this message and any attachments. 

WARNING: Computer viruses can be transmitted via email. The recipient should check this email and any attachments for the presence of viruses. The company accepts no liability for any damage caused by any virus transmitted by this email. 


www.wipro.com



Maybe create a hidden input tag right next to it that references some default 
value.

Why are you wanting to get a value if it is not checked?

If this is what you are looking for are you sure that a checkbox is the right 
form input type to be using?

Jim Lucas

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] pup

2009-04-16 Thread ramesh.marimuthu

Thanks Jim. Is there a way to get the value of that unchecked box?

-rummy

-Original Message-
From: Jim Lucas [mailto:li...@cmsws.com]
Sent: Friday, April 17, 2009 10:35 AM
To: Ramesh Marimuthu (WT01 - Telecom Equipment)
Cc: geek...@gmail.com; php-general@lists.php.net
Subject: Re: [PHP] pup

ramesh.marimu...@wipro.com wrote:
>
> Hi,
>
> I'm new to php.
> Say I have a check box which is checked already. Now I need to uncheck

> it and when I press the submit button, I should get the unchecked
value.
> Can anyone help me on this.
>
> One.php
>
> if($qry[0]!=$login_type)
> {
> echo " style=background-color:#CC66CC> value=a".$count." checked DISABLED />".$slot_value.""; }
> else { echo " style=background-color:#00> value='--user ".$slot_value." --ne ".$nen." --timespec ".$slt."'
> checked
>> ".$slot_value."";
> }
>
> One.php calls Two.php
> Two.php
>
> $enable_slot= $_POST['enable'];
> $uncheck_slot= $_POST['uncheck'];
>
> if ($enable_slot){
> echo "$enable_slot";
> foreach($enable_slot as &$a) {
> echo "".$a." --unreserve";
> }
> }
>
> I get only the results only if checked. I think I'm doing a mistake in

> the code in red font.
>
> regards,
> -rummy
>
>

When you uncheck a checkbox in an HTML form, it will not be submitted.

http://www.w3.org/TR/html401/interact/forms.html#checkbox

The part on the above page talking about "only "on" checkbox controls
can become successful." is the key here.

The successful part links here:

http://www.w3.org/TR/html401/interact/forms.html#successful-controls

This explains that the definition of a successful checkbox submission is
one that is  "on".
To have a checkbox in the "on" state means that it has to be checked.

So, any checkbox that is /not/ checked is considered "off" or
"undefined" will not be submitted because it is not valid.

Or something like that... :)

Jim Lucas

Please do not print this email unless it is absolutely necessary.

The information contained in this electronic message and any attachments to 
this message are intended for the exclusive use of the addressee(s) and may 
contain proprietary, confidential or privileged information. If you are not the 
intended recipient, you should not disseminate, distribute or copy this e-mail. 
Please notify the sender immediately and destroy all copies of this message and 
any attachments.

WARNING: Computer viruses can be transmitted via email. The recipient should 
check this email and any attachments for the presence of viruses. The company 
accepts no liability for any damage caused by any virus transmitted by this 
email.

www.wipro.com

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] pup

2009-04-16 Thread Jim Lucas

ramesh.marimu...@wipro.com wrote:
 
Hi,
 
I'm new to php.

Say I have a check box which is checked already. Now I need to uncheck
it and when I press the submit button, I should get the unchecked value.
Can anyone help me on this.

One.php

if($qry[0]!=$login_type)
{
echo "".$slot_value."";
}
else
{
echo "
".$slot_value."";

}

One.php calls Two.php
Two.php

$enable_slot= $_POST['enable'];
$uncheck_slot= $_POST['uncheck'];

if ($enable_slot){
echo "$enable_slot";
foreach($enable_slot as &$a) {
echo "".$a." --unreserve";
}
}

I get only the results only if checked. I think I'm doing a mistake in
the code in red font.

regards,
-rummy

 


When you uncheck a checkbox in an HTML form, it will not be submitted.

http://www.w3.org/TR/html401/interact/forms.html#checkbox

The part on the above page talking about "only "on" checkbox controls can become 
successful." is the key here.

The successful part links here:

http://www.w3.org/TR/html401/interact/forms.html#successful-controls

This explains that the definition of a successful checkbox submission is one that is  
"on".
To have a checkbox in the "on" state means that it has to be checked.

So, any checkbox that is /not/ checked is considered "off" or "undefined" will 
not be submitted because it is not valid.

Or something like that... :)

Jim Lucas

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] pup

2009-04-16 Thread ramesh.marimuthu

Hi,

I'm new to php.
Say I have a check box which is checked already. Now I need to uncheck
it and when I press the submit button, I should get the unchecked value.
Can anyone help me on this.

One.php

if($qry[0]!=$login_type)
{
echo "".$slot_value."";
}
else
{
echo "".$slot_value."";
}

One.php calls Two.php
Two.php

$enable_slot= $_POST['enable'];
$uncheck_slot= $_POST['uncheck'];

if ($enable_slot){
echo "$enable_slot";
foreach($enable_slot as &$a) {
echo "".$a." --unreserve";
}
}

I get only the results only if checked. I think I'm doing a mistake in
the code in red font.

regards,
-rummy




From: th.he...@gmail.com [mailto:th.he...@gmail.com] On Behalf Of German
Geek
Sent: Friday, April 17, 2009 9:47 AM
To: Ramesh Marimuthu (WT01 - Telecom Equipment)
Cc: php-general@lists.php.net
Subject: Re: [PHP] pup


>From What i learned, yes you can write pup here. Does anyone print this
mailing list? wtf?? i keep overestimating people's intelligence, im
sorry!
Tim-Hinnerk Heuer

http://www.ihostnz.com
Charles de Gaulle
<http://www.brainyquote.com/quotes/authors/c/charles_de_gaulle.html>   -
"The better I get to know men, the more I find myself loving dogs."


2009/4/17 


Hi,

I'm new to this list. Can I post PUP questions to this list?

regards,
-ramesh

P Save a tree...please don't print this e-mail unless you really
need to


Please do not print this email unless it is absolutely
necessary.

The information contained in this electronic message and any
attachments to this message are intended for the exclusive use of the
addressee(s) and may contain proprietary, confidential or privileged
information. If you are not the intended recipient, you should not
disseminate, distribute or copy this e-mail. Please notify the sender
immediately and destroy all copies of this message and any attachments.

WARNING: Computer viruses can be transmitted via email. The
recipient should check this email and any attachments for the presence
of viruses. The company accepts no liability for any damage caused by
any virus transmitted by this email.

www.wipro.com




Please do not print this email unless it is absolutely necessary.

The information contained in this electronic message and any attachments to 
this message are intended for the exclusive use of the addressee(s) and may 
contain proprietary, confidential or privileged information. If you are not the 
intended recipient, you should not disseminate, distribute or copy this e-mail. 
Please notify the sender immediately and destroy all copies of this message and 
any attachments.

WARNING: Computer viruses can be transmitted via email. The recipient should 
check this email and any attachments for the presence of viruses. The company 
accepts no liability for any damage caused by any virus transmitted by this 
email.

www.wipro.com


Re: [PHP] pup

2009-04-16 Thread German Geek
>From What i learned, yes you can write pup here. Does anyone print this
mailing list? wtf?? i keep overestimating people's intelligence, im sorry!
Tim-Hinnerk Heuer

http://www.ihostnz.com
Charles de 
Gaulle
- "The better I get to know men, the more I find myself loving dogs."

2009/4/17 

> Hi,
>
> I'm new to this list. Can I post PUP questions to this list?
>
> regards,
> -ramesh
>
> P Save a tree...please don't print this e-mail unless you really need to
>
>
> Please do not print this email unless it is absolutely necessary.
>
> The information contained in this electronic message and any attachments to
> this message are intended for the exclusive use of the addressee(s) and may
> contain proprietary, confidential or privileged information. If you are not
> the intended recipient, you should not disseminate, distribute or copy this
> e-mail. Please notify the sender immediately and destroy all copies of this
> message and any attachments.
>
> WARNING: Computer viruses can be transmitted via email. The recipient
> should check this email and any attachments for the presence of viruses. The
> company accepts no liability for any damage caused by any virus transmitted
> by this email.
>
> www.wipro.com
>


[PHP] pup

2009-04-16 Thread ramesh.marimuthu
Hi,

I'm new to this list. Can I post PUP questions to this list?

regards,
-ramesh

P Save a tree...please don't print this e-mail unless you really need to


Please do not print this email unless it is absolutely necessary.

The information contained in this electronic message and any attachments to 
this message are intended for the exclusive use of the addressee(s) and may 
contain proprietary, confidential or privileged information. If you are not the 
intended recipient, you should not disseminate, distribute or copy this e-mail. 
Please notify the sender immediately and destroy all copies of this message and 
any attachments.

WARNING: Computer viruses can be transmitted via email. The recipient should 
check this email and any attachments for the presence of viruses. The company 
accepts no liability for any damage caused by any virus transmitted by this 
email.

www.wipro.com