Thanks for the suggestion, but I'm still getting
Parse error: syntax error, unexpected T_ELSEIF in /home/lbravo/Documents/web/NewTek/local/admin2/resellers/image_edit.php on line 166
Bummer.
<?php
if ($extension == '')
{
echo ("<select name=\"resource_type\" id=\"resource_type\"> ") ;
?>
<option <?php if ($resource_type =="News") {echo "selected";} ?> value="News">News</option>
<option <?php if ($resource_type =="Review") {echo "selected";} ?>value="Review">Review</option>
<option <?php if ($resource_type =="Web Ad") {echo "selected";} ?>value="Web Ad">Web Ad</option>
<option <?php if ($resource_type =="Educational"){ echo "selected";} ?>value="Educational">Educational</option>
<option <?php if ($resource_type =="General Resource") { echo "selected";} ?>value="General Resource">General Resource</option>
<option <?php if ($resource_type =="End User Site") {echo "selected";} ?>value="End User Site">End User Site</option></select>
</select>
<?php
elseif($extension == 'pdf')
echo (" <select name=\"resource_type\" id=\"resource_type\"> ");
?>
<option selected value=" ">Select</option>
<option <?php if ($resource_type =="Pricing") echo "selected"; ?> value="Pricing">Pricing</option>
<option <?php if ($resource_type =="Info Sheet") echo "selected"; ?> value="Info Sheet">Info Sheet</option>
<option <?php if ($resource_type =="Promotion") echo "selected"; ?> value="Promotion">Promotion</option>
<option <?php if ($resource_type =="Training") echo "selected"; ?> value="Training">Training</option>
<option <?php if ($resource_type =="Form") echo "selected"; ?> value="Form">Form</option>
<option <?php if ($resource_type =="Guidelines") echo "selected"; ?> value="Guidelines">Guidelines</option>
<option <?php if ($resource_type =="Checklist") echo "selected"; ?> value="Checklist">Checklist</option>
<option <?php if ($resource_type =="Advertisement") echo "selected"; ?> value="Advertisement">Advertisement</option>
<option <?php if ($resource_type =="Sell Sheet") echo "selected"; ?> value="Sell Sheet">Sell Sheet</option>
<option <?php if ($resource_type =="Brochure") echo "selected"; ?> value="Brochure">Brochure</option>
<option <?php if ($resource_type =="Article") echo "selected"; ?>value="Article">Article</option>
<option <?php if ($resource_type =="Review") echo "selected"; ?> value="Review">Review</option>
<option <?php if ($resource_type =="Case Study") echo "selected"; ?> value="Case Study">Case Study</option>
<option <?php if ($resource_type =="Press Release") echo "selected"; ?> value="Press Release">Press Release</option>
<option <?php if ($resource_type =="Feature List") echo "selected"; ?>value="Feature List">Feature List</option>
<option <?php if ($resource_type =="Descriptions") echo "selected"; ?>value="Descriptions">Descriptions</option>
<option <?php if ($resource_type =="Product FAQ") echo "selected"; ?> value="Product FAQ">Product FAQ</option>
<option <?php if ($resource_type =="Resource") echo "selected"; ?> value="Resource">Resource</option>
<option <?php if ($resource_type =="Manual") echo "selected"; ?> value="Manual">Manual</option>
<option <?php if ($resource_type =="Competitive Matrix") echo "selected"; ?>value="Competitive Matrix">Competitive Matrix</option>
<option <?php if ($resource_type =="Award") echo "selected"; ?> value="Award">Award</option>
<option <?php if ($resource_type =="Other") echo "selected"; ?> value="Other">Other</option>
</select>
<?php
else
echo ("<select name=\"resource_type\" id=\"resource_type\">");
?>
<option <?php if ($resource_type =="Press Image") echo "selected"; ?> value="Press Image">Press Image</option>
<option <?php if ($resource_type =="Product Shot") echo "selected"; ?> value="Product Shot">Product Shot</option>
<option <?php if ($resource_type =="Promo Video") echo "selected"; ?> value="Promo Video">Promo Video</option>
<option <?php if ($resource_type =="Training Video") echo "selected"; ?> value="Training Video">Training Video</option>
<option <?php if ($resource_type =="Interface Shot") echo "selected"; ?>value="Interface Shot">Interface Shot</option>
<option <?php if ($resource_type =="Advertisement") echo "selected"; ?> value="Advertisement">Advertisement</option>
<option <?php if ($resource_type =="Web Banner") echo "selected"; ?> value="Web Banner">Web Banner</option>
<option <?php if ($resource_type =="Logo") echo "selected"; ?> value="Logo">Logo</option>
<option <?php if ($resource_type =="Label") echo "selected"; ?> value="Label">Label</option>
</select>
<?php } ?>
Sincerely appreciate any help you guys can provide...
Lori