Can I send a free course here?
Hello Guys, Is anyone here available for teamviewer?
Where you store token?
Does anyone know why my modal popup doesnt work with more than 10 digits of numbers?
Anyone working on any open source project?
What is the requirement?
in android you mean?
Please let me know.I will pay
Just buy it directly from thier website
Download the Complete Flutter Development Bootcamp with dart which is officially created in collaboration with the Google Flutter team. Complete Flutter
</tr>
‘;
}
} else {
$output .= ‘
<tr>
<td colspan=”2″ align=”center”>No Data Found</td>
</tr>
‘;
}
$output .= ‘
</table>
<br />
<div align=”center”>
<ul class=”pagination”>
‘;
$total_links = ceil($total_data / $limit);
$previous_link = ”;
$next_link = ”;
$page_link = ”;
//echo $total_links;
if ($total_links > 4) {
if ($page < 5) {
for ($count = 1; $count <= 5; $count++) {
$page_array[] = $count;
}
$page_array[] = ‘…’;
$page_array[] = $total_links;
} else {
$end_limit = $total_links – 5;
if ($page > $end_limit) {
$page_array[] = 1;
$page_array[] = ‘…’;
for ($count = $end_limit; $count <= $total_links; $count++) {
$page_array[] = $count;
}
} else {
$page_array[] = 1;
$page_array[] = ‘…’;
for ($count = $page – 1; $count <= $page + 1; $count++) {
$page_array[] = $count;
}
$page_array[] = ‘…’;
$page_array[] = $total_links;
}
}
} else {
for ($count = 1; $count <= $total_links; $count++) {
$page_array[] = $count;
}
}
for ($count = 0; $count < count($page_array); $count++) {
if ($page == $page_array[$count]) {
$page_link .= ‘
<li class=”page-item active”>
<a class=”page-link” href=”#”>’ . $page_array[$count] . ‘ <span class=”sr-only”>(current)</span></a>
</li>
‘;
$previous_id = $page_array[$count] – 1;
if ($previous_id > 0) {
$previous_link = ‘<li class=”page-item”><a class=”page-link” href=”javascript:void(0)” data-page_number=”‘ . $previous_id . ‘”>Previous</a></li>’;
} else {
$previous_link = ‘
<li class=”page-item disabled”>
<a class=”page-link” href=”#”>Previous</a>
</li>
‘;
}
$next_id = $page_array[$count] + 1;
if ($next_id >= $total_links) {
$next_link = ‘
<li class=”page-item disabled”>
<a class=”page-link” href=”#”>Next</a>
</li>
‘;
} else {
$next_link = ‘<li class=”page-item”><a class=”page-link” href=”javascript:void(0)” data-page_number=”‘ . $next_id . ‘”>Next</a></li>’;
}
} else {
if ($page_array[$count] == ‘…’) {
$page_link .= ‘
<li class=”page-item disabled”>
<a class=”page-link” href=”#”>…</a>
</li>
‘;
} else {
$page_link .= ‘
<li class=”page-item”><a class=”page-link” href=”javascript:void(0)” data-page_number=”‘ . $page_array[$count] . ‘”>’ . $page_array[$count] . ‘</a></li>
‘;
}
}
}
$output .= $previous_link . $page_link . $next_link;
$output .= ‘
</ul>
</div>
‘;
echo $output;
// Initialize the session
session_start();
// Check if the user is logged in, if not then redirect him to login page
if (!isset($_SESSION[“loggedin”]) || $_SESSION[“loggedin”] !== true) {
header(“location: index.php”);
exit;
// Store data in session variables
$_SESSION[“loggedin”] = true;
$_SESSION[“id”] = $id;
$_SESSION[“username”] = $username;
}
?>
<?php
require(“../../config.php”);
$userid = $_SESSION[“id”];
$updatecount = 1;
$plantname = “”;
$new1 = “”;
$new = “”;
function get_total_row($connect1)
{
$query = ”
SELECT * FROM nlcd_update
“;
$statement = $connect1->prepare($query);
$statement->execute();
return $statement->rowCount();
}
$total_record = get_total_row($connect1);
$limit = ’50’;
$page = 1;
if ($_POST[‘page’] > 1) {
$start = (($_POST[‘page’] – 1) * $limit);
$page = $_POST[‘page’];
} else {
$start = 0;
}
$query = ”
SELECT * FROM nlcd_update WHERE userid = $userid
“;
if ($_POST[‘query’] != ”) {
$search = mysqli_real_escape_string($connect, $_POST[“query”]);
$query = ”
SELECT * FROM nlcd_update
WHERE userid = $userid && gatein LIKE ‘%” . $search . “%’
OR userid = $userid && purpose LIKE ‘%” . $search . “%’
OR userid = $userid && trucknum LIKE ‘%” . $search . “%’
OR userid = $userid && entrytype LIKE ‘%” . $search . “%’
OR userid = $userid && drivername LIKE ‘%” . $search . “%’
OR userid = $userid && connumber LIKE ‘%” . $search . “%’
OR userid = $userid && ponumber LIKE ‘%” . $search . “%’
OR userid = $userid && checkout LIKE ‘%” . $search . “%’
“;
}
$query .= ‘ORDER BY id DESC ‘;
$filter_query = $query . ‘LIMIT ‘ . $start . ‘, ‘ . $limit . ”;
$statement = $connect1->prepare($query);
$statement->execute();
$total_data = $statement->rowCount();
$statement = $connect1->prepare($filter_query);
$statement->execute();
$result = $statement->fetchAll();
$total_filter_data = $statement->rowCount();
$output = ‘
<label>Total Records – ‘ . $total_data . ‘</label>
<table class=”table table-bordered table-hover “>
<thead class=”table-primary”>
<tr>
<th scope=”col”>S.NO</th>
<th scope=”col”>Unit</th>
<th scope=”col”>Gate ID</th>
<th scope=”col”>Check In</th>
<th scope=”col”>Purpose</th>
<th scope=”col”>Truck Number</th>
<th scope=”col”>Entry Type</th>
<th scope=”col”>Driver Name</th>
<th scope=”col”>Phone Number</th>
<th scope=”col”>Invoice ID</th>
<th scope=”col”>Invoice Number</th>
<th scope=”col”>Check Out</th>
</tr>
</thead>
‘;
if ($total_data > 0) {
foreach ($result as $row) {
if ($row[‘checkout’] != “”) {
$dateout = strtotime($row[‘checkout’]);
$datein = strtotime($row[‘gatein’]);
$new = date(“d/m/Y H:i”, $dateout);
$new1 = date(“d/m/Y H:i”, $datein);
} else {
$new = “Truck in Plant”;
}
if ($row[‘userid’] == 2) {
$plantname = “NLCD 1”;
} elseif ($row[‘userid’] == 3) {
$plantname = “NLCD 2”;
} elseif ($row[‘userid’] == 4) {
$plantname = “NLCD 3”;
}
$datein = strtotime($row[‘gatein’]);
$new1 = date(“d/m/Y H:i”, $datein);
$output .= ‘
<tr>
<td>’ . $updatecount++ . ‘</td>
<td style=”word-break: break-all;”>’ . $plantname . ‘</td>
<td style=”word-break: break-all;”>’ . $row[“inwardid”] . ‘</td>
<td style=”word-break: break-all;”>’ . $new1 . ‘</td>
<td style=”word-break: break-all;”>’ . $row[“purpose”] . ‘</td>
<td style=”word-break: break-all;”>’ . $row[“trucknum”] . ‘</td>
<td style=”word-break: break-all;”>’ . $row[“entrytype”] . ‘</td>
<td style=”word-break: break-all;”>’ . $row[“drivername”] . ‘</td>
<td style=”word-break: break-all;”>’ . $row[“connumber”] . ‘</td>
<td style=”word-break: break-all;”>’ . $row[“id”] . ‘</td>
<td style=”word-break: break-all;”><a target=”_blank” href=”../entry/pdfview.php?po=’ . $row[‘po’] . ‘”>’ . $row[‘ponumber’] . ‘</a></td>
<td style=”word-break: break-all;”>’ . $new . ‘
show the error, no one gonna read your whole code
And also pagination not working..but it’s work well on localhost
✋
Greetings from Talent Cabin Infinity!!!
We are looking for a PHP developer for Dehradun Location.
Should have minimum 5 Years of experience.
Interested candidate please drop your CV at cabintalentinfinity@gmail.com
Regards
Brij Mohan
9760839379
I am struggling at react using jwt
React native ?
Does anyone know why my modal popup doesnt work with more than 10 digits of numbers?

Send me your contact details, portfolio via PM with your location.
make it varchar
What is the requirement?
yes inbox
No free TLD is available. You can only get sub domains for free.
YouTube, Udemy
Location??
in android you mean?
Nope