No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
8 Posted Topics
I am not exactly sure what you are trying to accomplish with this line of code randNumAscii = randNum.nextInt(123); in your final else statement, but I assume you are just trying to get the program to realize that it is out of the correct range and move on to the …
You can use the css code below to remove the effect that changes the color of a visted link. a:visited{ color: black; text-decoration: none; } I am not sure if you need both the color and the text-decoration lines but one or the other or a combination of both will …
I am not sure if this is the best way to do this, but you could use the max-width: And the min-width: properties of the div in your CSS file. This should limit the resizing of the div.
The only thing I can think of would be to try an set the focus from the input. Try adding the following code to your css file and see if that works. input:focus{ outline: none; }
I think the issue you are having is with your isset function in your first if staement and with the lack of IDs on your input elements. I think this is what your code should look like. I have also added an Else clause to the first if statement this …
What is mostlikely happening is that your variable probably does not get set upon the loading of your page. Try setting your variable to an initial value and then let the code update it when it is run. Example: <?php $firstname=" "; //whatever code in here that sets the value …
Hey all, I have created a mail script in PHP for a contact form on my website. I have a message that displays when the message has been sent. I would like this message to display below my form but am having some trouble with this. The message is currently …
Hey all, Came across this site while scouring the web for a solution to my problem. All of the answers on here seem very helpful and non judgmental. That is hard to come by in a lot of programming forums, so thanks. My Question. I am using VS 2008 and …
The End.
sway1101