Re: [PHP] A bit confused PART 2

2002-05-27 Thread Evan Nemerson
No, you should be fine with leaving off the MyISAM. It is the default in 3.23 anyways. On Tuesday 28 May 2002 06:04 am, r wrote: > Greetings All, > Thank you for guiding me in the last doubt and special thanks to Juan Pablo > for the link. > > Just one question, since I have taken out that MyIS

Re: [PHP] A bit confused

2002-05-27 Thread Justin French
Okay, You REALLY need to read the manual(s) before posting. A quick search for MyISAM on the MySQL site would have told you what you need to know. a) it's mysql b) it's easy to find the answer yourself So don't ask here. Justin on 28/05/02 10:22 PM, r ([EMAIL PROTECTED]) wrote: > Hey guys,

[PHP] A bit confused PART 2

2002-05-27 Thread r
Greetings All, Thank you for guiding me in the last doubt and special thanks to Juan Pablo for the link. Just one question, since I have taken out that MyISAM bit when i made the table/s, so will it be missing anything? Com on guys, just on this list I get a load of emails I cant join the MySql

RE: [PHP] A bit confused

2002-05-27 Thread Peter
have a look on the mysql list for this :).. -Original Message- From: r [mailto:[EMAIL PROTECTED]] Sent: Tuesday, 28 May 2002 10:22 PM To: [EMAIL PROTECTED] Subject: [PHP] A bit confused Hey guys, I just got this code (from "PHP BlackBook" pg:213") to make a table in

[PHP] A bit confused

2002-05-27 Thread r
Hey guys, I just got this code (from "PHP BlackBook" pg:213") to make a table in MySql via a PHP script, I though I knew SQL till I saw this CREATE TABLE sh_indexPages ( ID int(11) NOT NULL auto_increment, Page varchar(255) NOT NULL default '', PRIMARY KEY (ID) ) TYPE=MyISAM; What the