Hi, friend It is not displaying values.
 
thanks for u'r reply.
 
-Balaji
----- Original Message -----
Sent: Thursday, July 26, 2001 6:22 PM
Subject: Re: [PHP] How to display values in HTML form by retriving from database through PHP

Hello Balaji,

Thursday, July 26, 2001, 2:24:09 PM, you wrote:

BA> Hi! Dear friends,

BA>      How to display the values in HTML FORM by retrieving the values from database.

BA> Please any one of u know suggest me.

BA> Thanks in advance.

BA> CODE(MODIFYUSER.PHP)
BA> ----------------------------------------------------------------------------

BA> <?php

BA> // Connect to MySQL

BA>     mysql_connect( 'localhost', 'balaji', 'pingpong' )
BA>         or die ( 'Unable to connect to server.' );

BA>     // Select database on MySQL server

BA>     mysql_select_db( 'imac' )
BA>         or die ( 'Unable to select database.' );

?>>

BA> <HTML>
BA> <BODY background="imacbg1.gif">

BA> <form method="POST" action="modifyuser.php">
BA> <div align="center">
BA> <center>
BA> <h2>Modify User</h2>
BA> <p>
BA> <script language="php">

BA>     $query = "SELECT * from employee WHERE emp_id='$user' "; // $user will come from post method
BA>     $result = mysql_query($query)or die ( 'Unable to execute query.' );

        $row=mysql_fetch_array($result);

BA> </script>
 Employee No:      <input type="text" name="emp_id" value="<? echo $row["emp_id"]; ?>">
 
Name       :   <input type="text" name="emp_name" value="<? echo  $row["emp_name"]; ?>">

 
and some another values like that
 
 I hope it helps
 
--
Best regards,
 Daniel                            mailto:[EMAIL PROTECTED]



--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]
The Information contained and transmitted by this E-MAIL is proprietary to 
Wipro Limited and is intended for  use only by the individual or entity to which 
it is addressed, and may contain information that is privileged, confidential or 
exempt from disclosure under applicable law. If this is a forwarded message, 
the content of this E-MAIL may not have been sent with the authority of the 
Company. If you are not the intended recipient, an agent of the intended 
recipient or a  person responsible for delivering the information to the named 
recipient,  you are notified that any use, distribution, transmission, printing, 
copying or dissemination of this information in any way or in any manner is 
strictly prohibited. If you have received this communication in error, please 
delete this mail & notify us immediately at [EMAIL PROTECTED] 


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to