Search found 8 matches
- Wed Apr 15, 2020 1:22 am
- Forum: Game Hosting
- Topic: Crontab running but not updating Box information Bgpanel(Bright Game Panel)
- Replies: 1
- Views: 438463
Re: Crontab running but not updating Box information Bgpanel(Bright Game Panel)
A simple fix can solve your problem. Please check your php version. Sometimes mentioning php version may work if you have multiple php versions installed and running for different folders with fpm in case. try something like below */10 * * * * php5.6 -q /var/www/html/gamepanel/admin/cron.php > /dev/...
- Wed Apr 15, 2020 12:43 am
- Forum: Game Hosting
- Topic: How to setup Gamerepo Config in Bright Game Panel(Bgpanel)
- Replies: 1
- Views: 409078
Re: How to setup Gamerepo Config in Bright Game Panel(Bgpanel)
How to add it : 1.Edit libs/gameinstaller/games.ini and un-comment ;cstrike by removing the ";" -> save 2.Go to : libs/gameinstaller/games/ 3.Make a folder: named "cstrike" 4.Make a new file inside it with a name "manifest.xml" , open it and edit it for your server preference Example: [== XML ==] <?...
- Mon Jun 10, 2019 9:47 pm
- Forum: Web Design and Development
- Topic: Click HTML link and delete data from MySQL database using PHP
- Replies: 4
- Views: 737142
Re: Click HTML link and delete data from MySQL database using PHP
i have an admin section on my website where i can view all the information in a MySQL table that stores login info (name, password, email etc.)! I want a link at the end of the table for each row, where i can click delete and the row will be deleted! I understand the SELECT/DELETE MySQL commands, b...
- Sat Jan 26, 2019 2:00 pm
- Forum: Web Design and Development
- Topic: Click HTML link and delete data from MySQL database using PHP
- Replies: 4
- Views: 737142
Re: Click HTML link and delete data from MySQL database using PHP
you can use something like below <a href="page.php?action=delete&id=$id">Delete</a> <?php //database connection code goes here if(($_GET['action'] == 'delete') && isset($_GET['id'])) { $sql = "DELETE FROM webhowned WHERE OrderID = '".($_GET["id"])."'"; if(mysqli_query($con,$sql)) { echo 'Record dele...
- Sat Jan 26, 2019 1:38 pm
- Forum: Web Design and Development
- Topic: Show confirmation box after clicking a HTML link <a>
- Replies: 2
- Views: 606998
Re: Pop up to confirm when clicking a HTML link
here are different types of prompting it and you can use that best suits you Inline Code: <a href="page.php?action=delete&id=$id" onclick="return confirm('Are you sure?')">Delete</a> Event Listener: <a href="page.php?action=delete&id=$id" class="alert">Delete</a> <script type="text/javascript"> var ...
- Sat Jan 19, 2019 4:22 pm
- Forum: Web Design and Development
- Topic: Get data from MySQL database using id in url
- Replies: 3
- Views: 664042
Re: Get data from MySQL database using id in url
<?php error_reporting(E_ALL); ini_set('display_errors', 1); $servername = "localhost"; $username = "xxxx"; $password = "xxxxxx"; $db_name = "xxxxxxxxx"; // Create connection $conn = new mysqli($servername, $username, $password, $db_name); // Check connection if ($conn->connect_error){ die("Connecti...
- Fri Jan 18, 2019 9:18 pm
- Forum: Web Design and Development
- Topic: Connect to MySQL database and fetch data from MySQL table and display in html
- Replies: 1
- Views: 540349
Re: Connect to MySQL database and fetch data from MySQL table and display in html
<?php include 'header.php'; $con = mysqli_connect( "xyz.com","nano","itsacar","my_db" ); $sql = "SELECT * FROM cars"; $result = $con->query($sql); echo "<table border='1'> <tr> <th>Name</th> <th>Model</th> </tr>"; while($array= mysqli_fetch_array($result)) { echo "<tr>"; echo "<td>" . $array['Name'...
- Fri Jan 18, 2019 8:58 pm
- Forum: Web Design and Development
- Topic: Country and State Dropdown List HTML & JS
- Replies: 1
- Views: 520507
Re: Country and State Dropdown List HTML & JS
You can find the solution in the attachment below and follow HTML example from file "example-default.html". Usage: <html> <head> <meta charset="UTF-8"> <!-- link for jquery style --> <script src="//ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script> <script src="//ajax.googleapis.co...