Jump to content

Webkiller

Member
  • Posts

    53
  • Joined

  • Last visited

About Webkiller

  • Birthday 02/28/1988

Profile Information

  • Gender
    Male
  • Location
    Wisconsin
  • Interests
    Cars,Life, Websites

Contact Methods

  • Facebook
    http://www.facebook.com/home.php?#!/profile.php?id=779630186

Webkiller's Achievements

Newbie

Newbie (1/14)

1

Reputation

  1. Yeah the # is my anchor. I am starting to like it now the fact it gets pulled down so I left like this. Thanks for the help. I can do without out it buts its a way to get attention to another page.
  2. Iframe problem I am having. I inserted a Iframe on the main Index page and anchored the iframe so it would scroll to a certain part of page. I thought that was that but heres my problem! When I enter the main index page it takes me down to the Iframe on Loading of Page/refresh and scrolls to anchored text in my iframe. It makes my whole main index page scroll down to the Iframe and waits for the Iframe to scroll to the ancored text. I want the main index page to stay at the top and not scroll down to the Iframe to watch it scroll itself. Thanks in advance for all the generous help!
  3. Meta refresh redirects have been used by spammers to fool search engines. So search engines remove those sites from their database. If you use a lot of meta refresh tags to redirect pages, the search engines may decide your site is spam and delete it from their index. Below is just a refresh with no redirect. <meta http-equiv="refresh" content="600"> 600 the amount of time in seconds the browser should refresh page.
  4. Beedev you were right I needed to change something and it was the table. I renamed the table not the database. Now everything works fine. The wording of the last table in the database above would not make it function. NEW PROBLEM I see the posts being recoded in the database but each refresh of the page on the site its not holding each person comments.
  5. Ajust this also //Slideshow Next Slide function nextslide() { if($.inAnimation) return false; else $.inAnimation = true; var options = $.extend($.fn.supersized.defaults, $.fn.supersized.options); var currentslide = $('#supersize .activeslide'); currentslide.removeClass('activeslide'); if ( currentslide.length == 0 ) currentslide = $('#supersize a:last'); var nextslide = currentslide.next().length ? currentslide.next() : $('#supersize a:first'); var prevslide = nextslide.prev().length ? nextslide.prev() : $('#supersize a:last'); //Display slide counter if (options.slide_counter == 1){ var slidecount = $('#slidecounter .slidenumber').html(); currentslide.next().length ? slidecount++ : slidecount = 1; $('#slidecounter .slidenumber').html(slidecount); } $('.prevslide').removeClass('prevslide'); prevslide.addClass('prevslide'); //Captions require img in <a> if (options.slide_captions == 1) $('#slidecaption').html($(nextslide).find('img').attr('title')); nextslide.hide().addClass('activeslide') if (options.transition == 0){ nextslide.show(); $.inAnimation = false; } if (options.transition == 1){ [b] nextslide.fadeIn(750, function(){$.inAnimation = false;});[/b] } if (options.transition == 2){ nextslide.show("slide", { direction: "up" }, 'slow', function(){$.inAnimation = false;}); } if (options.transition == 3){ nextslide.show("slide", { direction: "right" }, 'slow', function(){$.inAnimation = false;}); } if (options.transition == 4){ nextslide.show("slide", { direction: "down" }, 'slow', function(){$.inAnimation = false;}); } if (options.transition == 5){ nextslide.show("slide", { direction: "left" }, 'slow', function(){$.inAnimation = false;}); } $('#supersize').resizenow();//Fix for resize mid-transition }
  6. Go all the way down in your supersize .js file to this: Ajust as needed. //Captions require img in <a> if (options.slide_captions == 1) $('#slidecaption').html($(nextslide).find('img').attr('title')); nextslide.hide().addClass('activeslide') if (options.transition == 0){ nextslide.show(); $.inAnimation = false; } if (options.transition == 1){ [b]nextslide.fadeIn(750, function(){$.inAnimation = false;});[/b] } if (options.transition == 2){ nextslide.show("slide", { direction: "down" }, 'slow', function(){$.inAnimation = false;}); } if (options.transition == 3){ nextslide.show("slide", { direction: "left" }, 'slow', function(){$.inAnimation = false;}); } if (options.transition == 4){ nextslide.show("slide", { direction: "up" }, 'slow', function(){$.inAnimation = false;}); } if (options.transition == 5){ nextslide.show("slide", { direction: "right" }, 'slow', function(){$.inAnimation = false;}); } $('#supersize').resizenow();//Fix for resize mid-transition }
  7. Everything is fine connecting to Local Host and database like I posted in the previous post. It echoed back to me on my site saying it was connected. I will try and rename the table in the database to see if that works. The ---- was just for this site so everyone didnt see it. Yeah I tryed that already and nothing works. With the // its hidden text.
  8. Ok thanks for the help. I use md5 encryption for a Apache server. It echoed back on my site that its connected to the host and database. I changed it also to CREATE TABLE comments and still no dice. Thanks yeah I missed that. I really thought that was going to fix it hmm. <?php if($_POST) { $name=$_POST['name']; $email=$_POST['email']; $comment=$_POST['comment']; $lowercase = strtolower($email); $image = md5( $lowercase ); mysql_connect("localhost", "-------", "-------") or die(mysql_error()); echo ""; mysql_select_db("-------") or die(mysql_error()); echo ""; //mysql_query("INSERT INTO CREATE TABLE comments (name,email,comment) VALUES ('$name','$email','$comment') ") ; } else { } ?> The information is just not getting held in the database. Do you see anything wrong with the table screenshot?
  9. Heres is what I have put together so far for the PHP script. Below is database screen shot. I would like to hear all ideas. I am stuck as can be so thanks in advance. Michael <?php if($_POST) { $name=$_POST['name']; $email=$_POST['email']; $comment=$_POST['comment']; $lowercase = strtolower($email); $image = md5( $lowercase ); mysql_connect("localhost","EdwardBrown3236","buckeye3"); //mysql_query("INSERT INTO comments (name,email,comment) VALUES ('$name','$email','$comment') ") ; } else { } ?>
  10. Your right added the experiments to the web design page. Yes I agree the average user really doesn't care about canvas so put it under graphic design to make it more user friendly. JQery doesnt function as good as adobe I tried it out already awhile back. Less resources? I feel like the jquery is eating my bandwidth x2 compared to adobe flash.
  11. I linked it off to its page so tell me what you think now. Should I even keep it linked like this? Seems too different for me.
  12. I agree IE another year behind everyone else. How do they have support for it?
  13. Well IE9 beta does not work either. It blocks the whole thing and rejects it. Reading up on it Microsoft does not have plugins to support it. Another F- for IE. I will have to link it off to another page and warn people that its only supported in certain browsers.
  14. I need help with a .js script that wont function in IE. Its telling me there is something wrong with Line 5 Char 2. I have a screen shot for you showing the lines. Char 2 is located right before the P at the start of line 5. Any ideas is much appreciated and it works fine in Chrome and Firefox. View it at the bottom of the about page http://www.bestad.org/about.php Its the cloth with a picture of me blowing in wind when moved. Screen Shot:
×
×
  • Create New...