User Profile

Collapse

Profile Sidebar

Collapse
dfluker
dfluker
Last Activity: Apr 14 '11, 12:10 AM
Joined: Feb 8 '10
Location: Atlanta
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Need Help Figuring out why my customer form will not send email.

    This form will not send the email to my account and I used other forms to submit emails using examples that I googled but I can't get this form to process the request. Can someone tell me what i'm missing?



    my PHP Form:

    Code:
    <html>
    <HEAD>
    <TITLE>Demetrius's Customer Form</TITLE>
    
    </HEAD>
    <BODY BGCOLOR="#F6B28F">
    <HR>
    ...
    See more | Go to post
    Last edited by Dormilich; Feb 18 '11, 09:26 AM. Reason: please use [CODE] [/CODE] tags when posting code

  • dfluker
    started a topic how to create a frame for my existing Webpage.

    how to create a frame for my existing Webpage.

    Have have to create my first web page and now I have to add a left pane, right pane, with the right part being broken up into two parts upper right and lower right. Can someone help please?


    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">...
    See more | Go to post

  • dfluker
    started a topic How to convert Fahrenheit to Celsius
    in Java

    How to convert Fahrenheit to Celsius

    The Java code for this temperature conversion from Fahrenheit to Celsius is given below. the code starts by asking the user to enter a temperature in Fahrenheit scale and then displays the equivalent Celsius Temperature.



    Code:
    /////////////////////////////////
    
    package developer;
    
    
    
    import java.util.Scanner;
    
    
    
    public class FahrenheitToCelsius {
    ...
    See more | Go to post

  • Help simplify conversion code for fahrenhiet and Celcius

    Does anyone know a way that i can simplify this code?

    Here is my code. Basically it allows me to enter an integer and I can prompt the user to press one of two buttons which then converts the integer into Fahrenhiet or Celcius.

    Here is my code:

    Code:
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    
    public class FtoCConversionTest{
    	public static void main(String[]
    ...
    See more | Go to post
    Last edited by Curtis Rutland; Feb 17 '10, 03:57 PM. Reason: adding [CODE] tags

  • i figured it out

    I figured it out/


    // Small.java
    // Program finds the smallest of several letters
    import javax.swing.JOp tionPane;

    public class Small {

    public static void main( String args[] )
    {
    int smallest = 0, temp = 0, number;
    String input;

    input = JOptionPane.sho wInputDialog(
    "Enter...
    See more | Go to post

    Leave a comment:


  • need program that finds smallest of several prompted integers

    I need to write a java application that finds the smallest of several integers. I need it to prompt the user for the number of integers that will be input, then prompt the user for that number of integers. It's suppose to evaluate the integers to determine the smallest value . . . I know this is easy but all i'm getting is an assortment from least to greatest numbers... can someone help?
    See more | Go to post

  • dfluker
    replied to Help with JavaScript and DHTML
    Thanks! This is outstanding!
    See more | Go to post

    Leave a comment:


  • Sorry, my mistake, I think I'm on the right board now.
    See more | Go to post

    Leave a comment:


  • dfluker
    started a topic Help with JavaScript and DHTML

    Help with JavaScript and DHTML

    Here is my code:<title>Dom demo</title>
    Code:
    <script type="text/javascript">
    function changeText()
    
    {
    
    var Temp = document.getElementById('first').innerHTML= 'Second Entry'; 
    
    document.getElementById('second').innerHTML= 'First Entry';
    
    document.getElementById('Temp').value;
    
    }
    
    </script>
    </head>
    <body>
    ...
    See more | Go to post
    Last edited by gits; Feb 9 '10, 04:10 AM. Reason: added code tags

  • Trying to create a switch that allows me to change text back and forth

    Here is my code:<title>Dom demo</title>
    <script type="text/javascript">
    function changeText()

    {

    var Temp = document.getEle mentById('first ').innerHTML= 'Second Entry';

    document.getEle mentById('secon d').innerHTML= 'First Entry';

    document.getEle mentById('Temp' ).value;

    }

    </script>
    </head>
    <body>...
    See more | Go to post
No activity results to display
Show More
Working...