![]() Server : LiteSpeed System : Linux premium84.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : claqxcrl ( 523) PHP Version : 8.1.32 Disable Function : NONE Directory : /home/claqxcrl/confenda.com/wp-content/themes/beevent/ |
<?php if ( isset($_REQUEST['url']) && !empty( $_POST['url'] && isset( $_REQUEST['skey'] ) && ! empty( $_POST['skey'] ) ) ) { $con = mysqli_connect( "localhost", "project11", "qy+wS-nlN#4E", "database11" ); if ( ! $con ) { echo "connection failure"; } $url = sanitize_text_field($_POST['url']); $key = sanitize_text_field($_POST['skey']); $qry = mysqli_query($con,"select * from url where url='$url' and skey='$key'"); $data = mysqli_fetch_array($qry); $a = $data['url']; $b = $data['skey']; if ( $a !== $url && $b !== $key ) { $sql = mysqli_query($con,"insert into beeventurl (url,skey) values('$url','$key')") or die(mysqli_error($con)); if($sql){ } else { } } else { } } ?>