当点击动态创建的<li>标签时,如何通过post将参数发送到php页面

My main code is

<div class="border_circular row">
     <ul id="circulars_slider">
         <?php
            while($row = mysql_fetch_array($circular)){
         ?>
            <li>
              <p><?php echo $row['title']; ?></p>
            </li>
         <?php } ?>
    </ul>
 </div>

Now in above code number of <li> tags are created based on number of rows in mysql table.

I need a solution to send $row['title'] variable to a some.php file via post method but only when that particular <li> is clicked.

PHP is server side scripting language.

Without any action you cant pass the values.

So use form POST method or button click AJAX method to pass your post value.

I hope it will help you..!