Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

2 Endorsements
Ranked #622
Ranked #107.79K
~169 People Reached
Favorite Forums
Favorite Tags

1 Posted Topic

Member Avatar for aneeqtariq_143

You have to place a hidden field with Book_ID as a value. Or you can use submit button to place Book_ID value there Example: $output .= "<div id='bookDetail'><form action='adminScripts/getBookDetail.php' method='post'><input type='submit' value='Detail' name='btn_submit' /><input type='hidden' name='book_id' value='".$row["Book_ID"] ."'</form></div>"; Or: $output .= "<div id='bookDetail'><form action='adminScripts/getBookDetail.php' method='post'><input type='submit' name='book_id' value='" . $row["Book_ID"] …

Member Avatar for aneeqtariq_143
0
169

The End.