Thanks for your reply sir, I have already checked the network Tab and its showing "update_count.php" can not found, though i placed the file in the same folder.
But when i am doing like below its working :
<?php
$con=mysqli_connect('localhost','root','','youtube');
$sql="SELECT * FROM articles where alias='$it-is-fine'";
$res=mysqli_query($con,$sql);
$row=mysqli_fetch_assoc($res);
?>
But when I am doing like below, its not working :
The URL not found they are showing is not the correct URL, Maybe because I am using htaccess, I am trying to solve the URL probelm, if you have any idea about that , pls share with me. Thanks sir
<?php
$con=mysqli_connect('localhost','root','','youtube');
$alias=$_GET['alias'];
$sql="SELECT * FROM articles where alias='$alias'";
$res=mysqli_query($con,$sql);
$row=mysqli_fetch_assoc($res);
?>