Skip to content
Advertisement

How to get the id in modal and open their data to another page with php?

I want to get the id from this modal and pass it to another page like edit_appointment.php?id=’id from modal’ the problem is I execute my php code to different file and just use Ajax request to display my data to modal. I don’t know how to call the user id here a href=”” class=”btn btn-info userdata”>Edit Appointment enter image description here here’s my code

JavaScript

JavaScript

I use Ajax Request to get the data from modal

JavaScript

Advertisement

Answer

While returning the html data in your ajax response you can attach your id in one of the html tags. Let us attach id in the first item i.e. the line, Client: Dexter Veldez. Suppose the html code for Client: is:

JavaScript

Now we attach id in this tag (b tag) and also give it a unique id ‘client-label’ so that it becomes easier to select this tag later:

JavaScript

Now in the modal section, attach an onclick event in the Edit Appointment button as:

JavaScript

Now define a function named editButtonClicked inside a script tag at bottom of page as:

JavaScript
User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement