Jump to content

display php files in dreamweaver


ilikephp

Recommended Posts

hello, I have this form below for example:

I tried it and it works well,

but when I put it inside the dreamweaver, I see only the icon: "php"

how can I modify inside it if I want? so I can see the buttons,

because I used to remove the <?php and include in order to have the form displayed.

 

thanks...

 

 

<?php

 

    include("connect.php");

 

   

    echo " <form action=?action=form method=\"post\"> Please selcet your age : 

 

  <input type=\"radio\" name=\"age\" value=10 checked>10 years  || <input type=\"radio\" name=\"age\" value=11>11 years

 

 

  <input type=\"radio\" name=\"age\" value=12>12 years  || <input type=\"radio\" name=\"age\" value=13>13 years

 

 

  <input type=\"radio\" name=\"age\" value=14>14 years  || <input type=\"radio\" name=\"age\" value=15>15 years

 

 

 

  Now please enter your First name :

 

  <input type=\"text\" name=\"fname\" value=\"First Name\">

 

 

     

  Now please enter your Last name :

 

  <input type=\"text\" name=\"lname\" value=\"Last Name\">

 

 

 

  <input type=\"submit\" value=\"submit\"> || <input type=\"reset\" value=\"reset fields\">

 

";

 

 

  if($_GET['action'] == 'form')

 

      {

 

  if($_POST['age'] == "" | $_POST['fname'] == "" | $_POST['lname'] == "" ) { echo " Please fill all forms in "; }

 

      else

  {

 

  $age = $_POST['age'];

  $fname = $_POST['fname'];

  $lname = $_POST['lname'];

 

 

  echo "Hello ".$fname." ".$lname."  Your age is ".$age." Record enterd in the database as well.";

  mysql_query("update `members` SET first_name='$first_name', last_name='$last_name',  age='$age' ") or die(mysql_error());

 

        }

      }

?>

Link to comment
https://forums.phpfreaks.com/topic/86755-display-php-files-in-dreamweaver/
Share on other sites

  • 2 weeks later...

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.