.: Back one page :.

CONNECT, SELECT AND QUERY:

The basics of working with a MySQL solution are:

For each NOF page that needs MySQL --

  • Connect to your database server.
  • Connect to your chosen database on that server.
  • Send a query to the database (VIEW, ADD, AMEND and DELETE are the main ones used).
  • Send the results to the web browser.

A dynamic site can serve up thousands of web pages using just a handful of pages within a Fusion site.

If you can get used to this kind of syntax ::
 

$myquery = ("your query to the database goes here");
$result = mysql_query($myquery);


 

www.fuse7.co.uk

... you could be well on your way to having a dynamic site using Fusion.

NEXT :: Tips with MySQL database tables: