Thanks for the reply,
The users will always have an account, Ok I dont know how to code at all and im kinda pullin all this outta nowhere and hoping it works...reading through random tutorials and such. If im approaching it the wrong way please tell me (I dont know any better)
Here's what I tried...
2 Javascript fucntions
function getpos()
{
var Top = document.getElementById('mydiv').offsetTop ;
var Left = document.getElementById('mydiv').offsetLeft;
return {Top:Top,Left:Left}
}
function init()
{
var pos = getpos();
document.myform.Top.value = pos.Top;
document.myform.Left.value = pos.Left;
}
Then the html hidden fields in my form
<form name="myform" action="savepos.php" method="post">
<input type="hidden" name="Top">
<input type="hidden" name="Left">
<input type="submit" name="submit" value="Save" onClick=init()>
</form>
And finally savepos.php which writes it to my db
$Top = $_POST['Top'];
$Left = $_POST['Left'];
$sql = "SELECT profile_id FROM positions WHERE profile_id=".$_SESSION['uid'].";";
$res = mysql_query($sql) or die(mysql_error());
if(mysql_num_rows($res) == 0)
{
$sql2 = "INSERT into positions (profile_id,Top,Left) VALUES(".$_SESSION['uid'].",'$Top','$Left');";
$res2 = mysql_query($sql2) or die(mysql_error());
}
else
{
$sql3 = "UPDATE positions SET Top='$Top',Left='$Left' WHERE profile_id=".$_SESSION['uid'].";";
$res3 = mysql_query($sql3) or die(mysql_error());
}
echo "<script language=\"Javascript\" type=\"text/javascript\">
alert(\"Your profile layout has been updated\")
document.location.href='home.php'</script>";
}
This example only shows one divider that you can drag but you get the idea for adding more. The problem is that if the user doesnt drag it and leaves it as is it resets the positions to 0.
For example I have 2 divs, mydiv and yourdiv...if the user moves mydiv to top=250; left=250; but doesnt touch yourdiv and clicks save...its sets yourdiv to top=0; left=0;
Any suggestions? Am I approaching this the right way?
Thanks alot