Quote:
Originally Posted by esoin
How can I make it so that before they hit "submit", it says that AT LEAST ONE attached photo is required? I'm not very fimiliar with coding in php, so if anyone can help me, that'd be great.
|
In
vbgarage.php:
FIND:
PHP Code:
if (empty($year) OR empty($make) OR empty($model))
{
REPLACE with:
PHP Code:
if (empty($year) OR empty($make) OR empty($model) OR empty($_FILES['src']['tmp_name'])
{
That should do it.
Quote:
Originally Posted by esoin
Also, will there be sorting functions in the display mode? Thanks again
|
You bet'cha.