Posts by Gustavo Thomazelli • 98 points
4 posts
-
1
votes2
answers1931
viewsA: Insert value in Input Value with JS
To display the value in the value attribute as you wish, do it as follows: $(document).on("click", ".open-AddBookDialog", function () { var myBookId = $(this).data('id'); $(".modal-body…
-
2
votes2
answers2961
viewsA: How to pass data from one php to another without form?
It is very difficult to understand your question. But some alternatives: Redirect from archiv11 to the archiv2 passing the data via GET (roughly): Your URL would be…
phpanswered Gustavo Thomazelli 98 -
1
votes2
answers1164
viewsA: How to make the selected line font bold in Datagridview?
Try something like that: private void dataGridView1_CellFormatting(object sender, DataGridViewCellFormattingEventArgs e) { var dataGridView = sender as DataGridView; if…
-
4
votes1
answer441
viewsA: Call a wordpress page in PHP page
Apparently you are mixing PHP with Javascript ai. To make this redirect (correct me if I’m wrong) you can do the following: Using PHP: (remembering that to work should be done before any html output…