server-processing - Can data fetched be restricted instead of every data from a table?
server-processing - Can data fetched be restricted instead of every data from a table?

if i only want to fetch data "WHERE key = 'key' " and not the entire data from the table, how can i do this?. + is it also possible to dynamically call the data up into text inputs and not just ordinary table cells <td>. Thank you.
This discussion has been closed.
Answers
If you are using the demo SSP PHP class then, you could use the
complex
method that it has to apply awhere
condition.If you are using some other server-side processing script, you would need to either modify it, or use whatever API it presents.
Allan