hi guys,
i got something like that:
$sth = $dbh->prepare("select id,zone from location order by id");
$sth = $dbh->execute();
now the result should be returned - on the web page combo box - like this:
<option value=1>zone1</option>
<option value=2>zone2</option>
<option value=3>zone3</option>
...
<option value=n>zonen</option>
but, guess what, it returned 2 before 1, but when i run it through the mysql
client, it gives me the result i asked for.
why this happened ?, and how to stop it.
thanks v.much
btw, i don't use any sort keys n my perl script, coz the data should be
fetched as the same way that mysql return.
--
Hytham Shehab