Problems reading tables with html form.

Problems reading tables with html form.

My client has created the tables and views that they need for their application. Everything works great, however I need to read the data in one (or any) of the tables. I went to this location: https://api.creator.zoho.com/CSV-RPC-API-View-Records.html and used that code.
I got an API key and a ticket.
created the query and got the response:
Error Code , message 2832 ,[application owner] parameter is not available in the request
I found a response from someone 2 years ago that said I need to add the line:
<input type="hidden" name="zc_ownername" value="<The User Name>"
I ran that and received a blank page, no error, no success, nothing:
Here is the code:
<form method="POST" action=" https://creator.zoho.com/api/csv/read ">
    <input type="hidden" name ="apikey" id="apikey" value="<My apikey>">
    <input type="hidden" name ="ticket" id="ticket" value="<My ticket number>">
    <input type="hidden" name="zc_ownername" value="<My Ownername>">
    <input type="hidden" name="CSVString" value="lastt-demo,actionsroadtrail, View
    ProjectID,Equals,WillCrkErosion,.">



    <input type="submit" value="View Records">
</form>
Any help to read the tables in php or html would be appreciated.