Hello,
Here I have this website which is keeping contracts and invoices on a MySQL database.
Now, I have a page where the contracts are listed and another one where invoices are listed.
When I'm adding a new invoice I have a dropdown where client_name, contract_number and contract_date are concatenated so I can select the corresponding contract to add the invoice to.
My issue is:
on the contracts list page, I added a link to each contract, "View invoice" which is suppose to display the corresponding invoice.
Can somebody help by telling me how should I format the hyperlink so the correct invoice opens?
Right now I tried with "http://whatever.com/invoice_view.php?id=client" - where client is the name of the field from invoice where those three values above are concatenated - but it returns a view table without any values on it.
Thanks a lot!
Cheers!
Sieg
Here I have this website which is keeping contracts and invoices on a MySQL database.
Now, I have a page where the contracts are listed and another one where invoices are listed.
When I'm adding a new invoice I have a dropdown where client_name, contract_number and contract_date are concatenated so I can select the corresponding contract to add the invoice to.
My issue is:
on the contracts list page, I added a link to each contract, "View invoice" which is suppose to display the corresponding invoice.
Can somebody help by telling me how should I format the hyperlink so the correct invoice opens?
Right now I tried with "http://whatever.com/invoice_view.php?id=client" - where client is the name of the field from invoice where those three values above are concatenated - but it returns a view table without any values on it.
Thanks a lot!
Cheers!
Sieg
Comment