Hai,
I am new in PHP programming and I have some question to ask :
1. Are there any program that can convert MSaccess database to mysql? where can I get it?
2. Look at the code.
code :
<?
mysql_connect("localhost","Joe","****");
mysql_select_db("test");
$result = mysql_query("Select * from table1 where name='txtCode'");
$data = mysql_fetch_array($result);
?>
<form name="form1" method="post" action="">
<input type="text" name="txtName" value = <? echo $data["Name"] ?> >
<?
// program output only result "Fillippo" I want full name like "Fillippo inzaghi"
// looks like it doesn't include space and after space.
// (for information I use char data type in name column)
?>
</form>
Thanks!