MySQL Forums
Forum List  »  Stored Procedures

how do i create links in table displaying sp records list
Posted by: Bob Balas
Date: September 15, 2008 12:35PM

hi

I have a sp that returns a record set that i display to the end user.
i would like the end user to be able to change or delete any of the rows list.
i have set up two columns at the end of the row edit and delete constants are displayed for the user to click on and go the the appropriate page.
the cust_no needs to be passed along as well.

my problem is i can not seem to get the anchor tag to work
below is the print line

any help would be appreciated thanks Bob Balas

printf("<tr><td>%d</td><td>%s</td><td>%s</td><td>%s</td><td>%s</td><td>%s</td><td>%s</td><td>%s</td><td>%s</td><td>%s</td></tr>\n",
$row->cust_no, $row->name, $row->web_site, $row->obill_dt, $row->bill_amt, $row->ss_dt, $row->se_dt, $row->active, 'edit', 'delete');

Options: ReplyQuote


Subject
Views
Written By
Posted
how do i create links in table displaying sp records list
2127
September 15, 2008 12:35PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.