Jump to content

jool

New Members
  • Posts

    3
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

jool's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Hi there, I am using Dreamweaver to try to update a user profile. I am able to update all the text fields with the update page, but the checkboxes don't update. Whenever I click the update page the checkboxes just don't update. The code I am using for each check box is: <input <?php if (!(strcmp($row_rsupdate['mm'],"Y"))) {echo "checked=\"checked\"";} ?> <?php if ( isset($row_rsupdate['mm']) ) {echo "checked=\"checked\"";} ?> name="mm" type="checkbox" id="mm" value="Y"> Any help would be really appreciated. Thanks Jool
  2. Yeah...that was more or less the problem. I re-set things up so I could definitely echo - and now it's working! Thanks fenway! An outside perspective always helps. Have a great weekend!
  3. Hello all, I am trying to use the Flash Media player (as provided in Dreamweaver 8) to run flash video files (flv) from a MySQL database. The code generated when I insert the player from the menu is: <object classid="clsid27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="130" height="98" id="FLVPlayer"> <param name="movie" value="FLVPlayer_Progressive.swf" /> <param name="salign" value="lt" /> <param name="quality" value="high" /> <param name="scale" value="noscale" /> <param name="FlashVars" value="&MM_ComponentVersion=1&skinName=Corona_Skin_1&streamName=videos/naomi3&autoPlay=false&autoRewind=false" /> <embed src="FLVPlayer_Progressive.swf" flashvars="&MM_ComponentVersion=1&skinName=Corona_Skin_1&streamName=videos/naomi3&autoPlay=false&autoRewind=false" quality="high" scale="noscale" width="130" height="98" name="FLVPlayer" salign="LT" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </object> where the relative path is: videos/naomi3.flv However as the path is stored in the MySQL database, I tried replacing the 2 incidences of 'videos/naomi3' with <?php echo $row_d['video']; ?> (the MySQL database is set up correctly and values from other rows display on the dynamic form correctly - here 'video' is the row name and 'd' the table) but nothing happened /no video was displayed. Any help and advice would really be appreciated. Thanks and have a nice Friday. Jool
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.