Trying to write a php script where the user will enter the row number
(index) of a record. Say, for example, user wants record 55:
[MySQL]: select * from MyTable where Index = "55"
where Index is an autoincrement value, and also an index.
Unfortunately, MySQL barfs on this type of instruction. Doesn't seem
to want to let me access Index values...
Any suggestions?
Thanks,
Mike Darrett
(index) of a record. Say, for example, user wants record 55:
[MySQL]: select * from MyTable where Index = "55"
where Index is an autoincrement value, and also an index.
Unfortunately, MySQL barfs on this type of instruction. Doesn't seem
to want to let me access Index values...
Any suggestions?
Thanks,
Mike Darrett
Comment