Hello,
the following is a very simple connector for a combo box:<?php
require_once("combo_connector.php");
$conn=mysql_connect("localhost","root","");
mysql_select_db("Sample");
$badge = new ComboConnector($conn);
$badge->render_sql("SELECT * FROM `table_1` ORDER BY Badge","Badge","Badge");
?>
The ORDER BY clause is completely ignored!!
As a matter of fact, it is not being ignored: It is ordering the options in decending order!
Does someone know why this is happening?
Thanks!
Marco
Hello,
the issue is solved in the latest connector version that is available here:
Perfect!
Thank you very much!
Marco