|
-
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
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|