Skip to content
Advertisement

How can I access the related post id?

I am writing a program. In this page there are contents: posts and assignments. I can give a comment to the posts. However, how can I access the related post id?

Here are my PHP codes to add the db.

JavaScript

Here are my comments form. If a content is a post, the I can give a comment.

JavaScript

Advertisement

Answer

Just include the post id in your form as a hidden element – I am guessing at what the actual database name for the id is here – postID should be renamed to whatever your actual DB table field is

JavaScript

it will come through as $_POST['postID'] in your php script

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