This is a PHP question. -----Original Message----- From: Gary [mailto:g...@paulgdesigns.com] Sent: Tuesday, April 20, 2010 3:17 PM To: mysql@lists.mysql.com Subject: Getting Array to display on SELECT
I'm frankly not sure if this is a MySQL question or PHP, but I thought I would start here. I have a form that I have a (ever growing) list of checkboxes, Here is a sample of the code for it. <input name="keyword[]" type="checkbox" value="fox" /> It seems to go in, when I say seems to, I get a result of Array in the table, the code is listed below. I have tried various solutions I found in searching the issue, but have only been able to so far get Array. echo '<table border="1"><th>Id Number</th><th>Date Entered</th><th>Caption</th><th>Where Taken</th><th>Keywords</th><th>Description</th><th>Image</th>'; while ($row = mysqli_fetch_array($data)) { echo '<tr><td>' . $row['image_id']. '</td>'; echo '<td>' . $row['submitted']. '</td>'; echo '<td>' . $row['caption']. '</td>'; echo '<td>' . $row['where_taken'] . '</td>'; echo '<td>' . $row['keyword']. '</td>'; echo '<td>' . $row['description'] . '</td>'; if (is_file($row['image_file'])) { echo '<td><img src="'.$row['image_file'].'" width="100px" height="100px"/></td>'; } As a bonus question, does anyone have any idea why the image would show up in IE9, and not FF? Thanks for your help. Gary __________ Information from ESET NOD32 Antivirus, version of virus signature database 5045 (20100420) __________ The message was checked by ESET NOD32 Antivirus. http://www.eset.com -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe: http://lists.mysql.com/mysql?unsub=gto...@ffn.com This message contains confidential information and is intended only for the individual named. If you are not the named addressee, you are notified that reviewing, disseminating, disclosing, copying or distributing this e-mail is strictly prohibited. Please notify the sender immediately by e-mail if you have received this e-mail by mistake and delete this e-mail from your system. E-mail transmission cannot be guaranteed to be secure or error-free as information could be intercepted, corrupted, lost, destroyed, arrive late or incomplete, or contain viruses. The sender therefore does not accept liability for any loss or damage caused by viruses or errors or omissions in the contents of this message, which arise as a result of e-mail transmission. [FriendFinder Networks, Inc., 220 Humbolt court, Sunnyvale, CA 94089, USA, FriendFinder.com -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe: http://lists.mysql.com/mysql?unsub=arch...@jab.org