I want to embed this code into an html document:
<?php $sql="img_size=VERY_BIG"; $result = $conn->query($select.$sql); $result->num_rows; echo $result ?>
the problem is that i want it to be inside an option tag (of a select menu)
so i typed it like this:<option value="VERY_BIG">500x500<?php $sql="img_size=VERY_BIG"; $result = $conn->query($select.$sql); $result->num_rows; echo $result ?></option>
PROBLEM: the -> is being interpreted as the end of the tag... I have no idea what im doing wrong
Greetings