Search found 2 matches

by Phpn00b5
Sun Mar 13, 2011 8:53 am
Forum: HTML, CSS and other UI Design Technologies
Topic: Must be an easy way to add tags to vast lists
Replies: 2
Views: 1520

Must be an easy way to add tags to vast lists

I want to add say like 100 options to a drop down list.

But I cannot for the life of me find a way. It will take a long time to type <option> </option> etc for each record.

Anyone know of a good way to do it (program/online etc) I tried to google but I had no luck.


Thanks in advance
by Phpn00b5
Sun Mar 13, 2011 8:27 am
Forum: PHP - Code
Topic: Problem passing variable to like or = query
Replies: 1
Views: 541

Problem passing variable to like or = query

$result = mysql_query("SELECT Id FROM AllItems WHERE Name ='Boots'") or die(mysql_error()); $row = mysql_fetch_array($result) ; //echo $row['Id'] Works $var_1 = $row['Id'] ; //echo $var_1 ; Works $result2 = mysql_query("SELECT * FROM AllItemSales WHERE FromId like \"%$var_1%\&quo...