Page 1 of 1

GoLive 6 and PHP

Posted: Fri Nov 15, 2002 10:35 am
by AliasBDI
I use GoLive to create my web sites and I am a little new to PHP and how it interacts with MySQL databases. Do any of you use GoLive. I can really use some help, because the Adobe Forums are horrible and the help is not timely.

Moreover, would anyone know where some sites are dedicated to GoLive and PHP help?

Here is my first issue - I need to have my results from a query grouped like this:

GROUP ONE
Title1
Title2
Title3
Title4
Title5

GROUP TWO
Title1
Title2
Title3
Title4
Title5

What would the string be for this?

Posted: Fri Nov 15, 2002 2:01 pm
by BDKR
What is GoLive?

GoLive

Posted: Fri Nov 15, 2002 4:43 pm
by AliasBDI
Adobe GoLive v6.

Web authoring software.

http://www.adobe.com/golive

Posted: Mon Nov 18, 2002 2:52 am
by twigletmac
How you write your SQL statement would be dependent on how the data is stored in the database. It's likely that you probably just want to have an ORDER BY clause in the SQL though:

Code: Select all

SELECT field1, field2, field3 FROM table ORDER BY group
Mac