Jump to content

strange error


Codeman0013

Recommended Posts

now i get ... Parse error: syntax error, unexpected '{', expecting ',' or ';' in /u/internet/com/dickeyjohn/test.php on line 76and

 <?php do { ?>				 <option value="<?=$row_rs_industry['industry_id'];?>"<?=(isset($_GET['industry_id']) && $_GET['industry_id'] == $row_rs_industry['industry_id']) { ?> selected<?php } ?>><?=$row_rs_industry['industry_name'];?></option>

thats the line of code

Link to comment
Share on other sites

what are you trying to accomplish there?!? are you trying to make a dropdown with values?try this, its cleaner, thats kind of messy and really hard to understand!

<?phpdo{echo "<option value='$row_rs_industry['industry_id']'";if(isset($_GET['industry_id']) && $_GET['industry_id'] == $row_rs_industry['industry_id']){echo " selected='selected'>'";}echo $row_rs_industry['industry_id'];echo "</option>";}while($something == "something")?>

That should work, if not tell me specifically what you want!

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...