Forum Moderators: coopster
<?php
$memberaboutme = $_POST['memberaboutme'];
$memberlocation = $_POST['memberlocation'];
$memberid = int($_REQUEST['memberid']);//this will be the ID of the data row in the member table assuming you use one.
//Insert it into the member database, profile table
//The first VALUE('', is where you would have an id auto set using "auto increment"
mysql_query("INSERT INTO profile VALUES('', '$memberid', '$memberaboutme', '$memberlocation')")or die(mysql_error());
?>