Jump to content

ZulfadlyAshBurn

Members
  • Posts

    783
  • Joined

  • Last visited

Everything posted by ZulfadlyAshBurn

  1. haha. no prob goodluck
  2. <div id="main_vid_title"> <h2><?php echo $this->_params['item']['name'] ?></h2> </div> <div id="youtube" class="youtube"> <?php //arent you suppose to echo the line below? echo $this->display_youtube($this->_params['item']['embed_code'], 443, 270); ?> </div> <div id="main_vid_description" class="info"><?php echo $this->_params['item']['description'] ?></div> arent you suppose to echo that line?
  3. he should post the whole error code so we would know where the problem lies in.
  4. $('#pdfbutton').click(function() { var start = $('#startdate').val(); var end = $('#enddate').val(); alert(start) alert(end) }); if this doesnt give you anything on the alert box, then there is something wrong with the start and end date values. what is start date and end date? are they input boxes or divs?
  5. turn error reporting on. <?php // error reporting error_reporting(E_ALL); ini_set('display_errors', '1'); ?> did you get any errors?
  6. if there is data in the feed, the feedlinks would be at the bottom.
  7. use this instead. i changed the position from absolute to relative for div#feed_pagelinks <style> div#feed { border: 2px solid #555; padding: 4px; margin-bottom: 20px; text-align: center; display: block; min-height: 100px; position: relative; } div#feed_pagelinks { margin: auto; margin-top: 15px; position:relative; bottom: 0; margin-bottom: 5px; }
  8. try this. div#feed { border: 2px solid #555; padding: 4px; margin-bottom: 20px; text-align: center; display: block; min-height: 100px; position: relative; } div#feed_pagelinks { margin:0 auto; margin-top: 15px; position:absolute; bottom: 0; margin-bottom: 5px; }
  9. the ID is undefined.
  10. yes there is. you may want to look at tinymce or ckeditor. it works great. as far as i have known, the editor is only for html and not php.
  11. did you use googles code lab link
  12. for the online file virus scan, i guess you would need a dedicated server to actually have a software running to check the files. for the goo.gl, there must be some API to help you around.
  13. what is the problem you are actually having?
  14. use jQuery, its much easier. trust us. if you need help in jQuery post it here
  15. woah, swipe the card? how do you do that?
  16. The layout is kinda of old style. you should play around with css3. also bear in mind that everytime the users changes page, the song replays. kind of irritating. try jquery ajax.
  17. you may want to check your z-index a the youtube player would be over the music player. the style, script & divs should be after the <head> tag and not before <html> tag. not all navigation links are not working. IMO, for the player I realized that the duration is 0/230. this might confuse users. use 0s : 230s instead. the top player bar which displays Now Playing is redundant as the player is there to display the info. not a big fan of the color choices though. those are my critiques.
  18. AyKay47: i do agree with you for that reason. michaelburt: set the graphics to center and add a color to the div.
  19. what i would actually do is to set the main panel to 80% and the news feed to 20%
  20. The news updates goes to the below the content box if the user's screen resolution is lower than your actual site.
  21. LOL. no prob. kudos to Buddski
  22. make sure the file is in xamp www or htdocs folder then go to the browser, type http://localhost/ do you get anything?
  23. try this. maybe it helps. <?php $username = $_POST['username']; $password = $_POST['password']; if ($username&&$password) { $connect = mysql_connect("localhost", "root", "") or die ("Couldnt connect"); mysql_select_db("phplogin") or die("Couldn't find db"); } else { die ("Please enter a username and password"); } ?>
  24. try this code on your server. create a new .php file and use this code. <?php phpinfo(); ?> run it, do you get anything?
×
×
  • 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.