Jump to content

j-mak

New Members
  • Posts

    5
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

j-mak's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Hey thanks for the reply! That put the buttons on the right side of the screen however they appear the same. Thanks.
  2. Hey here is my code: <?php require_once("include/dbcon.php"); if (!is_null($dbh)) { $query = $dbh->prepare("SELECT id,menu FROM tbl_articles WHERE menu_show='1' ORDER BY menu_pio"); $query->execute(); if ($query->rowCount()) { $results = $query->fetchAll(PDO::FETCH_ASSOC); foreach ($results as $result) echo "<a href=\"index.php?artid=".htmlspecialchars($result["id"])."\">".htmlspecialchars($result["menu"])."</a>"; } } ?> and this is what it creates: http://i.imgur.com/kN19w.png How do I make the buttons go across the page without starting a new line, what part of this code do I need to edit? Thanks.
  3. I mean my 'admin panel' a friend has just told me that nobody but me calls it a 'php panel' I enter that code onto my admin panel and press save, but only a part of the code is there after it saves. Thanks.
  4. Hey, I have made a audio button in dreamweaver and copied the code into my php panel: <script language="JavaScript" src="http://www.MYWEBSITE.com/myname/audio/audio-player.js"></script> <object type="application/x-shockwave-flash" data="http://www.MYWEBSITE.com/media_folder/audio/player.swf" id="audioplayer1" height="24" width="290"> <param name="movie" value="http://www.MYWEBSITE.com/media_folder/audio/player.swf"> <param name="FlashVars" value="playerID=audioplayer1&soundFile=http://www.MYWEBSITE.com/media_folder/audio/Reconstructed Ancient Egyptian Melody.mp3"> <param name="quality" value="high"> <param name="menu" value="false"> <param name="wmode" value="transparent"> </object> However once I press save, all that is saved is: <script language="JavaScript" src="http://www.MYWEBSITE.com/myname/audio/audio-player.js"></script> <object type="application/x-shockwave-flash" data="http://www.MYWEBSITE.com/media_folder/audio/player.swf" id="audioplayer1" height="24" width="290"> <param name="movie" value="http://www.MYWEBSITE.com/media_folder/audio/player.swf"> The audio button works however because the code which includes the mp3 file never saves, it can never find the audio file. Can anyone tell me why the audio file part of the code doesn't save? Thanks.
×
×
  • 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.