Re: [PHP-DB] newbie question

2001-01-27 Thread jaskirat singh
Yes, It will index the page as any html page At 10:58 PM 1/27/01 +0700, Lisa Elita wrote: >Can search engines index any HTML pages that have .php as its extension (any >.php pages without a '?' or '&' in the URL) ? For example: >http://www.blablabla.com/blabla.php > >Thanks, >Lisa E > > > > >--

Re: [PHP-DB] load data conditionally

2001-01-31 Thread jaskirat singh
I think you could do this. Load all the data. Then "delete from table where name != extension" At 08:01 PM 1/30/01 -0500, Mark @ 10base-t wrote: >Hey there, >Can you use the load data infile command to load stuff in only if certain >fields match? Or would I have to do this via some php loop? >

Re: [PHP-DB] Processing using a single PHP file

2001-02-04 Thread jaskirat singh
Yes .. you can do it like this. Have two functions 1)generateForm(); 2)processData(); In the generateForm function use a hidden form field called say "action" with a value say "process" Then put a code like this. if ($action == "process") { processData(); } else { ge

Re: [PHP-DB] Migrating MySQL Table Data

2001-02-04 Thread jaskirat singh
Hi, You can use "insert into newTable(field1,field2,field3) select red,green,blue from oldTable" HTH Jaski At 10:11 PM 2/4/01 +1300, phobo wrote: >I am in the process of improving a database scheme considerably in MySQL, by >breaking tables into smaller tables and so one. I am wondering if the

Re: [PHP-DB] Text field types and efficiency

2001-02-17 Thread jaskirat singh
I am not sure if I get 100% of what you mean .. but what ever ... do not look for efficiency in such a small no. of records .. look for convenience in the long run. HTH At 07:52 AM 2/17/01 +, Alan Hale wrote: >Question from a beginner: I want to associate a fairly small amount of >text (abo