[insert_php]
$server = “localhost”;
$username = “srsheprh_wp319”;
$password = “[8B91p0-St”;
$database = “srsheprh_wp319”;
$conn = mysqli_connect($server, $username, $password, $database);
if(!$conn){ die(“Connection Failed: ” . mysqli_connect_error()); }
if(isset($_POST[‘Submit’])) {
$searchreg = $_POST[‘searchreg’];
$searchnum = $_POST[‘searchnum’];
$sql=”SELECT * from wpep_iipuonlineportal where regno like ‘$searchreg’ and mobile like ‘$searchnum'”;
$result = mysqli_query($conn, $sql);
}
[/insert_php]
[insert_php]
if(mysqli_num_rows($result)>0) {
while($row = mysqli_fetch_assoc($result)) {
echo ”
|
|
|
|
|
QUESTION PAPERS, KEY ANSWERS & STUDY MATERIALS FOR PRACTICE
|
17-APRIL-2020 UPLOADED MATERIALS |
CHEMISTRY: I PU Daily Practice Papers : Download
|
2-APRIL-2020 UPLOADED MATERIALS |
|
<< Go To Home Page
|
“; }}
if(mysqli_num_rows($result) == 0) {
echo “Enter Valid Reg Number, Registered Mobile Number and Click on ‘Submit’ button
<< Go To Home Page
“;
}
[/insert_php]