-
Marked Solved Status for cryptolocker ? encrypted files
Hi i just wanna know if there are way to **decrypt a files that is infected and decrypted by a virus / malware**? all of the files from one of … -
Marked Solved Status for Count from 2 table
Hi Im having a hardtime making my query work the way it should be.i'm getting wrong output. basically what im trying to do is a simple user statistic that will … -
Replied To a Post in Count from 2 table
yes sure but its a large file so i'll just trim it down. this is for the table trans_logs for the Date 2015-06-04 CREATE TABLE IF NOT EXISTS `trans_logs` ( … -
Replied To a Post in Count from 2 table
tried it several time already on phpmyadmin with the same error message. -
Replied To a Post in Count from 2 table
Hi LPS! thanks for your for that but unfortunately its not working i am just getting this error message. Error in Processing Request Error code: 504 Error text: Gateway Time-out … -
Edited Count from 2 table
Hi Im having a hardtime making my query work the way it should be.i'm getting wrong output. basically what im trying to do is a simple user statistic that will … -
Edited Count from 2 table
Hi Im having a hardtime making my query work the way it should be.i'm getting wrong output. basically what im trying to do is a simple user statistic that will … -
Created Count from 2 table
Hi Im having a hardtime making my query work the way it should be.i'm getting wrong output. basically what im trying to do is a simple user statistic that will … -
Began Watching Count from 2 table
Hi Im having a hardtime making my query work the way it should be.i'm getting wrong output. basically what im trying to do is a simple user statistic that will … -
Began Watching Notice: Undefined index: id
I am getting this "Notice: Undefined index: id" error message for my login system. I have tried several things to fix this but i have had no luck, i have … -
Replied To a Post in Notice: Undefined index: id
Is your session ID set? try echoing for the value first if your really getting it.your file should start with a session_start() function for your session variable to work try … -
Replied To a Post in cryptolocker ? encrypted files
Sorry for the late response been out for the holiday. so to cut the long story short, there are no possible way to decrypt any of the files without the … -
Edited cryptolocker ? encrypted files
Hi i just wanna know if there are way to **decrypt a files that is infected and decrypted by a virus / malware**? all of the files from one of … -
Created cryptolocker ? encrypted files
Hi i just wanna know if there are way to **decrypt a files that is infected and decrypted by a virus / malware**? all of the files from one of … -
Began Watching cryptolocker ? encrypted files
Hi i just wanna know if there are way to **decrypt a files that is infected and decrypted by a virus / malware**? all of the files from one of … -
Began Watching showing member id number on there page
hya i want to show each user there own id number for identity purposes so far i have <?php include("config/db_connect.php"); include("config/ckh_session.php"); ?> <?php $userinfo = mysql_query("SELECT user_id FROM user"); ?> … -
Replied To a Post in showing member id number on there page
Research pls http://www.w3schools.com/php/php_mysql_select.asp -
Replied To a Post in Union from 2 or more db and Sum with alias
@ Revjim thank you so much for that Snippet it really do the trick. learned new thing today and i cant believe that it is possible to access other db's … -
Created Union from 2 or more db and Sum with alias
Hi everyone i need some help down here. i am trying to connect multiple db and at the same time i want to sum the value of the column. what … -
Began Watching Union from 2 or more db and Sum with alias
Hi everyone i need some help down here. i am trying to connect multiple db and at the same time i want to sum the value of the column. what … -
Replied To a Post in XMLHTTP request
hi line 9 is fine the query is working when i insert a value directly to the query. its seems that the js is not passing the data to the … -
Edited XMLHTTP request
Hi can anyone help me find what am i doing wrong. i have an xml request that check data on db and return the result. and base on that result … -
Created XMLHTTP request
Hi can anyone help me find what am i doing wrong. i have an xml request that check data on db and return the result. and base on that result … -
Began Watching XMLHTTP request
Hi can anyone help me find what am i doing wrong. i have an xml request that check data on db and return the result. and base on that result … -
Replied To a Post in Show Data from 2 different Database
Thanks guys! -
Marked Solved Status for Show Data from 2 different Database
Hi need some insight on how to show record from different database on the same server. i also tried using join but didnt get the correct output. im finding a … -
Replied To a Post in Show Data from 2 different Database
Hi Thanks hericles and Pritaes both of you for the suggestion. UNION solved it all. i came up with this select Ra_num from DB1.processed_trans union all select Ra_num from DB2.processed_trans … -
Replied To a Post in Show Data from 2 different Database
to tell you the truth i dont know what to use. can i achieve what i want tru UNION? i'll try to look at union then. -
Replied To a Post in Show Data from 2 different Database
Hi Im just trying to show all the Ra_num record from both database, there is no matching record that i can use for the ON. am i missing something? is … -
Created Show Data from 2 different Database
Hi need some insight on how to show record from different database on the same server. i also tried using join but didnt get the correct output. im finding a … -
Began Watching Show Data from 2 different Database
Hi need some insight on how to show record from different database on the same server. i also tried using join but didnt get the correct output. im finding a … -
Began Watching date_diff
im trying to get the date diff: <?php $datetime1 = date_create(date('d - M - Y')); $datetime2 = date_create($date); $interval = date_diff($datetime1, $datetime2); $diff = $interval->format('LISTED %R%a DAY(S) AGO'); ?> it … -
Replied To a Post in date_diff
Hi just a stupid question do you have a default timezone included or activated? if no include in it at the beginning your your code or activate it on your … -
Began Watching form input cannot be passed to database with php
i have an issue with this new form im using based roughly on a design template that i found online, it looks great for the purposes that i need it … -
Replied To a Post in form input cannot be passed to database with php
hi check your form action you are sending your data in a .html file try making a .php file -
Began Watching limiting page for different users
hello masters, I have a problem regarding limiting the pages a certain user can access..in my case, i have added a roleID to my members table... here is the original … -
Replied To a Post in limiting page for different users
you are assigning a number when you use = only. try Using == iN yOUr if statement not = like $row['roleID'] == 1 -
Began Watching How to add script :"Are you sure to delete data?"
Hello PHP Friends, I think this is just if else statement problem but im kinda lose to it. The whole code is succesful in deleting the data from database the … -
Replied To a Post in How to add script :"Are you sure to delete data?"
Hi one simple solution is use windows.confirm javascript just put your delete query inside the js like <script> if (window.confirm('are you sure you want to delete this data?')) { .. … -
Began Watching How to get count of two values from a single table
Hi ! I need to have a single mysql query which should get COUNT of two different values in a single field, suppose i have a field in a table … -
Replied To a Post in How to get count of two values from a single table
Hi you can use a condition statement inside your query that check whether your row contain the data that you wanna count.. SELECT COUNT(DISTINCT CASE WHEN approved = '0' THEN … -
Marked Solved Status for date range and time range
Hi i have this query that search data between two date range `select RA, Name, Model, Plate, Service, Grand_total, Payment_type from advance WHERE SDate BETWEEN '" . $from . "' … -
Began Watching how to compare two date after 19-jan-2038
dear friends m using strtotime () function to compare two dates , but it is not working for the date greater then '19-jan-2038'.my os is win 7 32 bit and … -
Replied To a Post in how to compare two date after 19-jan-2038
your script pls? -
Replied To a Post in Changing Pass in PHP MySQL
Can you post the connection.php? also change $_POST['password'] to $_POST['n_password'] as password is not define from `if(isset($_POST['old_password']) && isset($_POST['password']) && isset($_POST['new_password']))` to `if(isset($_POST['old_password']) && isset($_POST['n_password']) && isset($_POST['new_password']))` -
Began Watching Changing Pass in PHP MySQL
I have my php page, in which i have 3 fields old pass, new pass, confirm new pass. I'm trying to chnge the password of my id from which i … -
Replied To a Post in Changing Pass in PHP MySQL
try removing **".** sign on line 97 like this and retry $change_pass = "UPDATE users SET user_pass = '$new_pass' WHERE user_name = '$_SESSION[user_name]'"; -
Began Watching Mysql update not working unless I press F5
Hi Everyone, get a really strange problem I have been trying to fix for a few days now and I am unable to get it working. I have the following … -
Replied To a Post in Mysql update not working unless I press F5
An Ajax reload would be great -
Began Watching How would I use two actions?
How would I use two actions? <form id="myForm" action="form.php","form1.php" method="GET"> Does this work? Now I have 2 actions. how to connect 2 pages using php? plz guide me
The End.