D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
proc
/
thread-self
/
root
/
proc
/
thread-self
/
root
/
home
/
shubmkcj
/
urbane.createerp.com
/
Filename :
getuser.php
back
Copy
<!DOCTYPE html> <html> <head> </head> <body> <?php $q = $_GET['q']; include 'config.php'; $sql = "SELECT * FROM contact_address where id = '$q'"; $result = mysqli_query($conn,$sql); $row = mysqli_fetch_assoc($result) ; echo "<p style='margin: 0;text-transform: capitalize;font-size:15px;'>" . $row['address'].", " . $row['city'].", ".$row['state']."</p>"; echo "<p style='margin: 0;'>".$row['pin']."</p>"; echo "<p style='margin: 0;'><b>GSTIN : </b>".$row['gstin']."</p>"; mysqli_close($conn); ?> </body> </html>