Okay, so now I am confronted with a new problem, and I just don't know what to do next.
I have a table where the contents of it is dynamically added from a database on page load, and each item in the table is a link. The link looks like this:
$ct->data[$key][3]='<a href="allthread.php?sessid='.SID.'&product='.$ct->data[$key][0].' '.$ct->data[$key][1].' '.$ct->data[$key][3].'&qty='.">'.$ct->data[$key][3].'</a>
Which is great.
But, the user is also allowed to (using ContentEditable) edit the values within the table, and when they then click the link, I need to get the NEW value of the URL with PHP. How can this be done?
Thank you