Posted by Geoff Berrow on 01/11/07 12:47
Message-ID: <i6bcq2t6ph91tg80pkovpsql8l0mfkrokk@4ax.com> from Dave Nash
contained the following:
>
>heres the code I have. what needs changing.
>
>$query="UPDATE categories SET catname='$ud_catname',
>image='{$ud_image["name"]}', parentid='$parentid' WHERE
>catid='$ud_catid'";
>@mysql_select_db($database) or die( "Unable to select database");
>mysql_query($query);
>var_dump($ud_image);
>var_dump($_FILES);
The name of the image will be in the following variable
$_FILES['ud_image']['name']
therefore
$query="UPDATE categories SET catname='$ud_catname',
image='".$_FILES['ud_image']['name']."', parentid='$parentid' WHERE
catid='$ud_catid'";
should work.
--
Geoff Berrow 0110001001101100010000000110
001101101011011001000110111101100111001011
100110001101101111001011100111010101101011
[Back to original message]
|