Jump to content

Cronthenoob

Members
  • Posts

    312
  • Joined

  • Last visited

Posts posted by Cronthenoob

  1. I know I posted this topic a while ago but i've got a couple questions.I just created a MySQL database, how do I edit it? I'm totaly confused by brinksters control panel.Is it possible to install phpMyAdmin??

  2. I've got this bit of javascript I use to change an image to another image when the mouse goes over it. But i've got a special situation where I need the image to stay in the mouseover state while over certain links, then goes back to normal. The code I have now changes the image on mouseover, but doesnt change it back. I can make the image change to the original, however, when the mouse moves from the image, it changes immediatly. I only want it to go back to normal when the drop down menu dissappears.Heres the broken example

    <script type="text/javascript">	function init() {   if (!document.getElementById) return   var imgOriginSrc;   var imgTemp = new Array();   var imgarr = document.getElementsByTagName('img');   for (var i = 0; i < imgarr.length; i++) {  if (imgarr[i].getAttribute('hsrc')) { 	 imgTemp[i] = new Image(); 	 imgTemp[i].src = imgarr[i].getAttribute('hsrc'); 	 imgarr[i].onmouseover = function() {    imgOriginSrc = this.getAttribute('src');    this.setAttribute('src',this.getAttribute('hsrc')) 	 }  }   }	}	onload=init;</script>

  3. I've looked all over and I'm having a hard time finding out how to create a side scrolling menu. I've looked at the w3schools examples, but that isnt exactly the effect i'm going for. I have a layout made, but I don't have anywhere to host the images at the moment. I made a primitive diagram, but I think it gets the point across.Heres what it looks like normaly.[--A--] _:)_:)_:)_[--B--]Heres what I want it to look like on mouse over the A[--A--] A-Link1 A-link2 _:blink:_:blink:_:blink:_[--B--]Heres what I want it to look like on mouse over the B[--A--] _:angry:_:blink:_:(_[--B--] B-Link1 B-link2If anybody has some examples they can point me too it'd be appreciated. I don't really expect someone to come up with something new :mellow: just need some direction because I've been searching just about all day for a solution.

  4. I currently have a web site I built using PHP. I have learned ASP, and I am starting to develop in that as well.I was just curious if anybody knew a good hosting service with a decent price that supports both ASP and PHP. I've done some research, but I may be missing something. Thanks for your help!

×
×
  • Create New...