MySQL Forums
Forum List  »  PHP

problem with display
Posted by: Muumigirl :)
Date: February 02, 2006 03:45AM

I would like to see all the lines of the database so that some entries are as regular text (name, address) and some are in a textbox (date, comment), and that I could update them when I need to.
Is this possible? The solution, that all entries are in separated textboxes, will also be suitable.

The existing code is:
<?php
$server = 'freesql.org';
$user = 'xxx';
$pass = 'xxx';
$db = 'xxx';
$conn = mysql_connect($server, $user, $pass);
mysql_select_db($db, $conn);

$result = mysql_query("SELECT name,date,adress,comment FROM tabel1;");

while ($query = mysql_fetch_array($result))

?>

Options: ReplyQuote


Subject
Written By
Posted
problem with display
February 02, 2006 03:45AM
February 02, 2006 05:52AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.