With WebAssist's MySQLi Server Behaviors, you can quickly create MySQLi recordsets and MySQLi repeat regions, and use various other server behaviors to generate streamlined MySQLi code in Dreamweaver. This is necessary because MySQL code is now deprecated so you must transition to MySQLi for your websites to continue to work when the next version of PHP is released.
In this Getting Started Guide, we will walk you through generating a very basic “results” page by creating a recordset, adding a binding to your page, wrapping a repeat region around that binding, then using a couple of the other server behaviors to better display your results. Once you understand the concepts, you can build on your knowledge to create custom database driven pages for your website.
- Dreamweaver CS4 or higher; Dreamweaver CS6 or higher to use the Query Builder
- MySQLi Server Behaviors installed and activated.
- Site defined in Dreamweaver. For assistance, watch this tutorial: Setting up a site in Dreamweaver.
- MySQL database. If you do not have one, you can download our free eCommerce MySQL database in this tutorial.
- A saved PHP web page.
First we will create a Dynamic MySQLi connection to your database.
- Open your PHP page.
- In the Databases panel, click the + button and choose Dynamic MySQLi Connection.
- Name your connection and fill in the credentials to connect to your chosen MySQL database.
- Click the Test button to be sure you have a valid connection to your database.
- Click OK.
Next we will create a MySQLi recordset so that your PHP page can retrieve a specific set of data from your database.
- In the Server Behaviors panel, click the + sign and Select WebAssist > MySQLi > MySQLi Recordset.
- If the recordset dialog is in Advanced mode, click the Simple button.
- Enter a recordset name in the recordset Name field.
- Select the MySQLi database connection we set up.
- Select the database table you want to pull records from. In this example, we chose Products.
- Use all columns and sort the records by one of your database columns if you’d like.
- Click the test button to make sure you will be displaying data from your database.
- Click the Advanced button and then the Query Builder button to access the MySQLi Server Behaviors visual query building tool.
Because we are building a simple results page here, this Getting Started Guide provides an overview the Query Builder interface without going into detail. However, an upcoming tutorial in the MySQLi Server Behaviors series will walk you through the steps of using the advanced Query Builder tool. See the last section of this Getting Started Guide for a list of upcoming tutorials in this series.
- In the Query Builder interface, you can create your recordset much more visually by dragging and dropping tables from the lefthand column onto the grid.
- Place your cursor to the right of a column name and drag it to a column name in another table to create relationships between tables. The SQL statement will be written for you below the grid.
- If you should choose to edit the SQL manually to create even more advanced recordsets, click on the Advanced tab below the grid and simply click in your SQL statement to make manual edits.
- Click OK to generate your MySQLi recordset on your PHP page. You will see the recordset added in the Server Behaviors panel and code added to the page when you view the page in Code View or Split View.
- Save the page (Ctrl or Cmd + S).
- In the Bindings panel, expand your MySQLi recordset.
- In Design View, drag one of your bindings onto your page.
- Click Save.
- Go to File > Preview in Browser to preview your page in the browser to make sure you are displaying the first record from the recordset we created.
When building a results page, you typically display all the results returned from your recordset. We can accomplish this by wrapping a repeat region around the recordset.
- Click on your binding in Design View.
- In the Server Behaviors panel, click the + button, then WebAssist > MySQLi > MySQLi Repeat Region.
- Select the MySQLi recordset we created and type how many records to show at a time (or select All records).
- Click OK. You will see the repeat region server behavior added in the Server Behaviors panel and a repeat tab added to your binding.
- Save your page.
- Go to File > Preview in Browser to preview your page in the browser to see the records from the recordset we created, now repeating on the page.
To display to your users how many total results are returned, you can use the record count server behavior.
- Click outside of the repeat region in Design View and create a paragraph break by hitting return on your keyboard.
- In the Server Behaviors panel, click the + button, then WebAssist > MySQLi >Display Record Count > MySQLi Display Total Records
- Select the MySQLi recordset we created and click OK. You will see the record count server behavior added in the Server Behaviors panel and a binding added to your page.
- Save your page.
- Go to File > Preview in Browser to preview your page in the browser to see the total records display on your page.
If your results page returns a lot of records but you've chosen to display only a certain number of them per page (in the repeat region step), you will likely want to add pagination links so your users can navigate from one page of results to the next (and back).
- After your record count binding in Design View, create a paragraph break by hitting return on your keyboard.
- In the Server Behaviors panel, click the + button, then WebAssist > MySQLi > Recordset Paging > MySQLi Move to Next Page
- Select the MySQLi recordset we created and click OK. You will see the paging server behavior added in the Server Behaviors panel and a text link added to your page.
- You can repeat these steps to create more pagination links. Most people use all 4: First, Previous, Next, Last.
- Save your page.
- Go to File > Preview in Browser to preview your page in the browser to page through your results.
You can use the Show If set of server behaviors for different scenarios. Many people use the “Show If Recordset is Empty” to display a text statement to users when no results are found, and display the data when results from the recordset are found. As that example will be difficult to preview for this example (because we already know we are returning results from our recordset), we will use the Show If First Page server behavior to display some text only on the first page of results.
- At the top of your page in Design View, type any statement you want.
- Select the text with your cursor.
- In the Server Behaviors panel, click the + button, then WebAssist > MySQLi > Show Region > MySQLi Show If First Page.
- Select the MySQLi recordset we created.
- Click OK. You will see the Show If server behavior added in the Server Behaviors panel and a Show If tab surrounding your text in design view.
- Save your page.
- When you preview your page in the browser, you will see “text here” display on your page because it is your first page of results. If you have enough results to navigate to the next page of results, you will see that “text here” does not display on the other pages. You can use this set of server behaviors to display what you need to for various “show if” scenarios.
Now that you have finished this Getting Started Guide, you can begin building custom database driven pages with these concepts. The following tutorials in the MySQLi Server Behaviors series demonstrate how to use the Insert, Update, and Delete MySQLi server behaviors, the Data Modeling tool, the Query Builder tool, and the User Authentication server behaviors. Here are summaries of these tutorials.
- MySQLi Server Behaviors series: An overview of four in-depth tutorials to help you transition to MySQLi so that your websites will continue to work when the next version of PHP is released.
- Insert, update, and delete records: This data management interface allows users to insert, update, and delete data in a database from a PHP page. From the individual insert, update, and delete interfaces, users can choose a trigger, such as a form post, and specify how to manipulate records in a database.
- User authentication: The MySQLi user authentication interface allows users to generate code on a PHP page to log in or log out users stored in the database. Users can also check if a username exists with the Check New Username server behavior and restrict access to a specific page based on user credentials.
- Data Modeling and Query Builder video: The stand alone data modeling interface allows users to set up joins which will be automatically applied whenever tables are added in the MySQLi recordsets. The Query Builder interface allows users to drag and drop database tables onto a grid and create relationships between database tables to create advanced SQL statements.
jamie424562: 9 Years, 8 Months, 3 Weeks, 1 Day, 18 Hours, 42 Minutes ago
Data Modeling and Query Builder video: isnt working!!!!! could really do with this.
Team WebAssist: 9 Years, 8 Months, 2 Weeks, 6 Days, 15 Hours, 47 Minutes ago
Go directly to the video on YouTube and meanwhile we'll get the issue fixed. Thank you for reporting!
https://www.youtube.com/watch?v=HKgydWuo3oM
: 9 Years, 3 Months, 4 Days, 2 Hours, 39 Minutes ago
Very helpful tutorial i am completely a novice and now i am very good in mysqli after reading this and another tutorial on TalkersCode.com which is also very good to learn mysqli
http://talkerscode.com/webtricks/basic-usage-of-mysqli-with-prepared-statements-for-beginners.php