Re: [PHP] php's future

2001-09-02 Thread Coconut Ming

I can say.. It is really depends on your system specification and the users of
it
If the benchmark result is correct.. I think everybody will learn JSP rather
than doing Php...
Check your sources.. I guess they are not professional enough..
Have a nice day.


Regards
Ming

Jack Sasportas wrote:

> You should send those people an email tell them of your specs, and you want
> some kind of lab results to look at because you beleive their article is
> full of sh*t
>
> nick wrote:
>
> > Hi all in the list :
> > I read an news that said jsp/asp.net is better than php..
> >
> > They made a test that asp/php/jsp/asp.net using "for loops",
> >
> > Jsp from 1 to 2 takes only 4 secs
> > Asp from 1 to 2000 (not 2) takes 72 secs
> > Php from 1 to 2000 (not 2) takes 68 secs
> > Asp.Net from 1 to 2 takes only 3.5~3.8 secs...
> >
> > So is it time to learn jsp/asp+ instead of learning php ..???
> > I am so confused ~
> > I have been learning php for a while and now it said jsp/asp+ is better
> > than it.@@
>
> --
> ___
> Jack Sasportas
> Innovative Internet Solutions
> Phone 305.665.2500
> Fax 305.665.2551
> www.innovativeinternet.com
> www.web56.net


-- 
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] Text area ...

2001-08-06 Thread Coconut Ming

 hi..
Did you feel it is strange alignment when you output the same thing
again in PHP...
 I mean the line break... For example I enter the following text and the
order of text as below
 I
 AM
 A
GUY

 so... I store it when I output it again.. It is display as I AM A
GUY
 the line break or [enter] key just does not detected... Anyone know
any  solution for this? thanks for helping.

 Sincerely
 Kok Ming


-- 
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: syntax help~~~

2001-08-06 Thread Coconut Ming

Hi..
   I just wanna laugh really want to laugh  WUWUAHAHAHAHAHA
   I have figure out the solution amazingly! here will be the code I am running
LoL





I separated the query code with the database connection coding LoL after that..
its work!
Thanks for everyone who help me :)

Regards
Kok Ming

"Arcadius A." wrote:

> Hello !
> We could keep things simpler ...
> Why not  give a try to this ?:
>
> $watchlist_query = mysql_query( "Create Table $temp ( WId int Not
> Nullauto_increment, QId int not null, Primary Key (WId) )" )  or die ("Error
> ! Cannot  create table !" . mysql_error() );
>
> Hope it would work :o)
>
> (At least the  "mysql_error()" would show you the  error code )
>
> Arcad
>
> "Coconut Ming" <[EMAIL PROTECTED]> wrote in message
> [EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> > Hi
> >   I am having the problem in the coding below
> >
> >  >
> > mysql_connect('localhost','123','123') or die ("Unable to connect to SQL
> > Server");
> > mysql_select_db('Helpwatch') or die ("Unable to select database");
> >
> > $temp = $username."watch";
> > $watchlist_query = mysql_query("Create Table "$temp"(WId int Not Null
> > auto_increment, QId int not null, Primary Key (WId));");
> > ?>
> >
> > So.. in the above coding. I need to create a table. The table name
> > should be a user-define name + "watch"
> > I acquire the $username correctly and the variable $temp is working fine
> > when I try to echo the value of it.
> > Just say. I enter my username as coconut so I wish the mysql query to
> > create a table called coconutwatch
> > but I can't do that.. Because of the syntax error, the coding I have
> > underline is where the parser told me that is an error there.
> > I have playing around with it for 2 hours and more... but I cant solve
> > it.. Anyway help is greatly appreciated.
> > Thanks in advance.
> >
> > Sincerely
> > Kok Ming
> >


-- 
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] syntax help~~~

2001-08-05 Thread Coconut Ming

Hi..
   It is not workable too... thanks.

"Andreas D. Landmark" wrote:

> At 05.08.2001 12:49, Coconut Ming wrote:
> >Hi
> >   I am having the problem in the coding below
> >
> > >
> >mysql_connect('localhost','123','123') or die ("Unable to connect to SQL
> >Server");
> >mysql_select_db('Helpwatch') or die ("Unable to select database");
> >
> >$temp = $username."watch";
> >$watchlist_query = mysql_query("Create Table "$temp"(WId int Not Null
> >auto_increment, QId int not null, Primary Key (WId));");
> >?>
> >
> >but I can't do that.. Because of the syntax error, the coding I have
> >underline is where the parser told me that is an error there.
> >I have playing around with it for 2 hours and more... but I cant solve
> >it.. Anyway help is greatly appreciated.
> >Thanks in advance.
>
> Your underlining doesn't show verywell in plain text, but anyhow, your
> line $watchlist_query ... is missing to .'s...
>
> Create Table "$temp", should be Create Table " . $temp . ", that way you'll
> concatenate the string in the way you want them to (and the code should work).
>
> --
> Andreas D Landmark / noXtension
> Real Time, adj.:
>  Here and now, as opposed to fake time, which only occurs there
> and then.


-- 
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] syntax help~~~

2001-08-05 Thread Coconut Ming

Hi
  I am having the problem in the coding below



So.. in the above coding. I need to create a table. The table name
should be a user-define name + "watch"
I acquire the $username correctly and the variable $temp is working fine
when I try to echo the value of it.
Just say. I enter my username as coconut so I wish the mysql query to
create a table called coconutwatch
but I can't do that.. Because of the syntax error, the coding I have
underline is where the parser told me that is an error there.
I have playing around with it for 2 hours and more... but I cant solve
it.. Anyway help is greatly appreciated.
Thanks in advance.

Sincerely
Kok Ming