[PHP] Open a new window by code

2002-08-24 Thread Alva Chew

Hi,

Does anyone know how can i open a new browser window by PHP code?

Thanks and regards.
Alva Chew



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




[PHP] Mail() function problem

2002-09-10 Thread Alva Chew

Hi Everyone,

I did a simple test with this script:



I run the script from web accounts on different servers. I can receive the
test mail from some but not from others. Is there any configurations that I
am missing here?
Thanks and regards.

--
Alva Chew
Stridec Systems
mobile: +65 9144-8023
email: [EMAIL PROTECTED]
website: www.stridec.com



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




Re: [PHP] Mail() function problem

2002-09-11 Thread Alva Chew

Hi,

does that mean I can do nothing about it?

Alva

"Pekka Saarinen" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> At 9/10/2002, you wrote:
> >Hi Everyone,
> >
> >I did a simple test with this script:
> >
> > >mail("[EMAIL PROTECTED]", "test", "this is a test mail");
> >echo "done";
> >?>
> >
> >I run the script from web accounts on different servers. I can receive
the
> >test mail from some but not from others. Is there any configurations that
I
> >am missing here?
>
> My guesses:
>
> Many mail servers are configured so that they send mail only if the sender
> receives mail at the same time. One other possible pitfall is that reverse
> IP lookup is not working correctly and your server rejects the mail as it
> cannot verify the sender host. Also, many (well configured) servers do not
> send when there is no live account for that sender.
>
>
> -
> Pekka Saarinen
> http://photography-on-the.net
> -
>
>



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




[PHP] Pricing Advice Needed

2001-06-28 Thread Alva Chew

Hi everyone,

Just don't really know where to post this, so here goes:

I am working as a freelance programmer. Problem is I don't really have a
clue how the pricing mechanism in the industry works. I have heard
calculations based on man hours and lines of code, so perhaps anyone one can
tell me on the average, how much should I be charging per man hour, or per
line of code?

Sincere thanks and regards,
Alva Chew, Singapore



-- 
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]




Re: [PHP] Pricing Advice Needed

2001-06-28 Thread Alva Chew

Thanks for the advice, what about charging by line of code? how does that
apply?

"elias" <[EMAIL PROTECTED]> wrote in message
9hes64$f3r$[EMAIL PROTECTED]">news:9hes64$f3r$[EMAIL PROTECTED]...
> It all depends on your experience and knowledge.
> You know that if you're too experienced you can save lots of research and
> learning time.
> therefore you have to estimate how much does your hour cost and how much
are
> you able to do.
> you can start by $20/hour...
>
> ""Alva Chew"" <[EMAIL PROTECTED]> wrote in message
> 9hejcu$3n6$[EMAIL PROTECTED]">news:9hejcu$3n6$[EMAIL PROTECTED]...
> > Hi everyone,
> >
> > Just don't really know where to post this, so here goes:
> >
> > I am working as a freelance programmer. Problem is I don't really have a
> > clue how the pricing mechanism in the industry works. I have heard
> > calculations based on man hours and lines of code, so perhaps anyone one
> can
> > tell me on the average, how much should I be charging per man hour, or
per
> > line of code?
> >
> > Sincere thanks and regards,
> > Alva Chew, Singapore
> >
> >
> >
> > --
> > 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 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 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]




Re: [PHP] Line Breaks in

2001-06-28 Thread Alva Chew

try the function nl2br($value)

regards,
Alva Chew

"Nathan Cook" <[EMAIL PROTECTED]> wrote in message
00cf01c0ff3d$72992160$[EMAIL PROTECTED]">news:00cf01c0ff3d$72992160$[EMAIL PROTECTED]...
> Hello-
>
> I am selecting a value from a blob field in a mysql db.  The value looks
like
> this:
>
> Test 12...3 \r \n  %0%D Test
>
> When I print that value in a $value -- The textarea
returns
> exactly what you see above.  I am trying to get it to display a line break
(so
> that I can store the line breaks in the db).  If you can shed any light on
this
> subject, please share.
>
> Thank You,
> Nathan Cook
> [EMAIL PROTECTED]
>
>
> --
> 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 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]




Re: [PHP] Convert

2001-06-28 Thread Alva Chew

use implode("separator", $array).
the separator joins the array together.

For example, if you got 'cat', 'run', 'dog' in the array
using implode("-", $array) will give you:

cat-run-dog. Got it?

regards,
Alva Chew

<[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> Hi
>
>  How do I convert arrays to string ??.
>
> ~ Karthick
>
> --
> 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 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] php logo

2001-07-19 Thread Alva Chew

hi everyone,

i would like to know if there is an official logo for php4 that i can put on
my company website, to show that we support and develop applications using
php4.

thanks and regards,
Alva Chew



-- 
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] SMS with php

2001-09-16 Thread Alva Chew

Hi,

Does anyone know how to send a sms message to a handphone using PHP?

Thanks and regards,
Alva Chew



-- 
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]