Hi,

before you look into tables and stuff, try this

a movie with text fields (varname firstname, email, etc)
and a button that loads variables from a php script

the php script:
<?
include "dbstuff.php"; // same as your save script
$result = mysql_query("select firstname, lastname, email from cards limit 1");
$row = mysql_fetch_array($result);
print "&firstname={$row['firstname']}&lastname={$row['lastname']}&email={$row['email']}&";
?>

Musicman