DMXzone Database Updater PHP Support Product Page

Answered

Dreamweaver cc has left out the "DATA" menu

Asked 07 Apr 2014 02:47:52
3
have this question
07 Apr 2014 02:47:52 Julio C posted:
Dreamweaver cc has left out the "DATA" menu, and you guys left out instructions on how to add the dynamic table. For the people with little skills, that was a double strike. I downloaded the Adobe addon (after so much time trying to figure out what I was doing wrong).
The code that I get for my dynamic table is the following, I would like to know whether that's the same similar code I should be writing for the DMXzone database updated addon:

<table class="table" >
<thead>
<tr>
<td>Med ID</td>
<td>Med&nbsp;Name</td>
<td>Med Type</td>
<td>Med Subtype</td>
</tr>
</thead>
<tbody>
<?php do { ?>
<tr>
<td><?php echo $row_PsychMeds['jcr_psychmedid']; ?></td>
<td><?php echo $row_PsychMeds['jcr_psychmedname']; ?></td>
<td><?php echo $row_PsychMeds['jcr_psychmedtypeid']; ?></td>
<td><?php echo $row_PsychMeds['jcr_medsubtypeid']; ?></td>

</tr>
<?php } while ($row_PsychMeds = mysql_fetch_assoc($PsychMeds)); ?>
</tbody>
</table>

Thank you for your response.

Replies

Replied 07 Apr 2014 08:44:59
07 Apr 2014 08:44:59 Teodor Kuduschiev replied:
Hello Julio,
The Data menu was removed by Adobe from Dreamweaver CC as the PHP code used for connecting to your database and displaying the info on your page has been deprecated as of PHP 5.5.0 and will be removed in the future.

The code generated by dreamweaver that you provided is different than the code of the DMXzone Database Connector and DMXzone Database Updated. Both of the extensions are using PHP PDO.
Replied 07 Apr 2014 19:14:40
07 Apr 2014 19:14:40 Julio C replied:
Could you please direct me to a DMXzone document describing how to insert a dynamic table using the Database Updater and show the source code? I know, this is elementary stuff but somehow I just cannot figure it out.

I will greatly appreciate your help.
Thank you.
Replied 09 Apr 2014 04:15:37
09 Apr 2014 04:15:37 Julio C replied:
Hi Teodor,
Were you able to have a DMXzone document describing how to insert a dynamic table using the Database Updater and show the source code?
Replied 09 Apr 2014 11:51:17
09 Apr 2014 11:51:17 Teodor Kuduschiev replied:
Hello,
Please check the HTML5 Data Bindings and DMXzone Database Connector Documentation. It is described how to create and populate repeat region(s) there.
Replied 12 Apr 2014 14:57:24
12 Apr 2014 14:57:24 Julio C replied:
I am trying to add the data fields from within DMX Tabs. The tabs formatting keeps getting messed up when I try to add data info setup. Additionally, when I add the data binding ->(Data Binding Repeat - {{Psych Meds.data}}), when I try to add data names to the repeat region, I get the following:
"You are insterting detailed data without a repeat region!
Would you like to insert one first? Otherwise you will see only the first record."

Reply to this topic