Misdew/feed/cmtamnt.php
2022-07-20 09:27:41 -04:00

6 lines
188 B
PHP

<?php
require_once("../inc/conx.php");
$getrstr = safe($_GET['i']);
$cntq = mysqli_query($conx, "SELECT id FROM feed_comments WHERE post_rstr='$getrstr'");
echo mysqli_num_rows($cntq);
?>