Thanks for the reply. How can I get that info into the array up top? If you haven't already noticed, I'm not the most proficient guy here!
This part of the code pretty much defines all my values which get inserted into my HTML document:
$summary = $_POST[summary];
$passwd = $_POST[passwd];
$date = $_POST[date];
$pubdate = date('D, d M Y H:i:s T');
$body = $_POST[body];
$price = $_POST[price];
$link = $_POST[link];
$linkname = $_POST[linkname];
$image = $_POST[image];
$article_id = $_POST[article_id];
$article_url = $link;So how can I get the value from the line you pointed out into that section? Basically this line:
$image = $_POST[image];is where my HTML document will be looking for the name of the file. I supposed I need to replace the "$_POST[image];" part of that equation with something to get the value from the line you pointed me to. I tried replacing it with "$imagename;" but it didn't work. Any ideas?