Jump to content

zafira

New Members
  • Posts

    9
  • Joined

  • Last visited

Recent Profile Visitors

551 profile views

zafira's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. thanks i really appreciate
  2. Write a program which can convert a temperature in Fahrenheit to the corresponding temperature in Celcius and vice versa. To convert a temperature in Fahrenheit to Celsius, 32 degrees need to be subtracted and the result needs to be multiplied by (5/9). To convert a temperature in Celsius to Fahrenheit, divide the temperature by (5/9) and add 32 degrees to the result. this my coding <html> <head> <title>convert</title> </head> <body> <?php //Read the temperature $temp = "" ; //Read the 'direction' that is selected -- from Fahrentheit to Celcius ('ftc') or from Celcius to Fahrentheit ('clt'). $direction = "" ; if($direction == "ftc") { //Include the calculations that are needed. echo " $temp degrees Fahrentheit is <b>$temp_new</b> degrees Celsius " ; } else { //Include the calculations that are needed. echo " $temp degrees Celcius is <b>$temp_new</b> degrees Fahrentheit " ; } ?> <form action="convert.php" method="post"> <select name="direction"> <option value="ftc">Fahrenheit to Celsius </option> <option value="ctf">Celsius to Fahrenheit </option> </select> <input type="text" name="temp" size="6"/> <br/> <input type="Submit" value="Convert"/> </form> </body> </html>
  3. thank you for helping, i really appreciate
  4. thnks for helping
  5. okey thank you for helping
  6. <?php // Read the selected language. $language = ($_REQUEST['language']); // make the language array. $language=array(1=>'Malay','English','Chiness','India'); // make the language pull-down menu. echo'<select name="language">'; foreach($language as $key =>$value) { echo"<option value=\"$key\">$value</option>\n"; } echo '</select>'; // Validate the gender. if (isset($_REQUEST['language'])) { $language = ($_REQUEST['language']); if ($language == 'Malay') { $message = '<P><b>Good day, Sir!</b></p>'; } else ($language == 'English') { $message = '<P><b>Good day, Madam!</b></p>'; } else ($language == 'Chiness') { $message = '<P><b>Good day, Madam!</b></p>'; } elseif ($language == 'India') { $message = '<P><b>Good day, Madam!</b></p>'; } else { // Unacceptable value. $message = NULL; echo '<p><font color="red">You forgot to enter your name!</font></p>'; } }else { //$_REQUEST['gender'] is not set. $language = NULL; echo '<p><font color="red">You forgot to enter your name!</font></p>'; } ?> <form action="choose.php" method="post"> <br/> <input type="submit" value="GO!"/> </form> </body> </html>
  7. Let the user select a language in a pull-down menu. After the user has selected a language and clicked a button, a message should appear with a “Welcome” greeting in that same language. Include at least four different language options.
  8. thank you for helping me... i already run.. but time not display in my web
  9. Make a webpage on which the user can enter his or her name. After the user has clicked on the submit button, a new webpage should appear which welcome him or her with either one of the following messages: "Good morning, [name] !", "Good afternoon, [name] !" or "Good evening, [name] !". The greeting should of course depend on the current time. To read the current hour (in 24 hour format), you can use the following built-in function: date(H).
×
×
  • 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.