Hey there,
I need help with select box (drop-down list) in a PHP form, i had tried many times but not working and also my php code is contact with mysql.
Here is my code.
[php]<?php
$result = mysqli_query($con,“SELECT * FROM image_gallery”);
while($row = mysqli_fetch_array($result)){
$title = $row['title'];
$discription = $row['discription'];
$cid = $row['cid'];
echo "<a href =\"edit.php?cid=$cid\">$title</a><br>";
} [/php]
thank you