
crf1121359
Members-
Posts
50 -
Joined
-
Last visited
Everything posted by crf1121359
-
Hello, I am trying to figure out why paypal recurring payment always shows as Pending when I use my following code? this is a very basic HTML form which i use for recurring payment in paypal. but when the users sign up using the following code, the payment status shows as "PENDING"! could someone please help me to solve this issue? Thanks in advance. here is my html form: <form action="https://www.sandbox.paypal.com/cgi-bin/webscr" method="post"> <input type="hidden" name="cmd" value="_xclick-subscriptions"> <input type="hidden" name="business" value="[email protected]"> <input type="hidden" name="currency_code" value="GBP"> <input type="hidden" name="no_shipping" value="1"> <input type="hidden" name="cbt" value="Return to The Store"> <input type="hidden" name="cancel_return" value=" <?php echo $actual_link ?>"> <input type="hidden" name="custom" value="This is a custom field!!!"> <input type="hidden" name="item_name" value="ACCOUNT UPGRADE"> <input type="hidden" name="a3" value="5.00"> <input type="hidden" name="p3" value="1"> <input type="hidden" name="t3" value="M"> <input type="hidden" name="src" value="1"> <input type="hidden" name="sra" value="1"> <input type="image" src="http://www.paypal.com/en_US/i/btn/btn_subscribe_LG.gif" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!"> </form>
-
Hello, Let me first explain what i'm trying to do... I have two Tables in mysql database. 1st is members and the other one is storename. I save a random unique Key in both of these tables in the column randKey. This all works fine. Now, I have a login form which I am trying to use which has INNER JOIN in the SELECT. the purpose of using INNER JOIN is to be able to use the randKey in both Tables mentioned above so the users cannot login to someone else's account if you know what I mean. only if the email, password and randKey is matched then they can login? However, when I run the PHP/login page and try to login, I get That information is incorrect, try again echoed out to me... Here is my code: <?php // Parse the log in form if the user has filled it out and pressed "Log In" if (isset($_POST["email"]) && isset($_POST["password"])) { $manager = preg_replace('#[^A-Za-z0-9]#i', '', $_POST["email"]); // filter everything but numbers and letters $password = (!empty($_POST['password'])) ? sha1($_POST['password']) : ''; // filter everything but numbers and letters // Connect to the MySQL database include "config/connect.php"; $sql = "SELECT members.id, members.email, members.password, members.randKey, storename.email, storename.password, storename.randKey FROM `members` INNER JOIN `storename` ON (members.randKey = storename.randKey) WHERE members.email = '$manager' AND members.password = '$password' "; // query the person // ------- MAKE SURE PERSON EXISTS IN DATABASE --------- $query = mysqli_query($db_conx, $sql); if (!$query) { die(mysqli_error($db_conx)); } $existCount = mysqli_num_rows($query); // count the row nums if ($existCount == 1) { // evaluate the count $row = mysqli_fetch_array($query, MYSQLI_ASSOC); $_SESSION["id"] = $row["id"]; $_SESSION["manager"] = $manager; $_SESSION["password"] = $password; header("location: dashboard"); exit(); } else { echo 'That information is incorrect, try again <a href="login">Click Here</a>'; exit(); } } ?> could someone please tell me why i cannot login using the code above ? am i MISSING SOMEHTING?
-
I am using the prepared statement exactly the same way in my registeration form and it works just fine! look at below code: $stmt = mysqli_prepare( $db_conx, "INSERT INTO tabelname (firstname, lastname) VALUES (?, ?)" ); //after validation, of course mysqli_stmt_bind_param($stmt, "ss", $firstname, $lastname); mysqli_stmt_execute($stmt); if (mysqli_affected_rows($db_conx)) { mysqli_stmt_close($stmt);//<-- CLEAN UP AFTER YOURSELF! //update was successful $id = mysqli_insert_id($db_conx); }
-
Hello, this error is driving me crazy! I hope someone could help me out here: This the code for alogin form that I am trying to use but I keep getting this error: Warning: mysqli_fetch_array() expects parameter 1 to be mysqli_result, boolean given in PHP? <?php error_reporting(E_ALL); ini_set('display_errors', '1'); ?> <?php ob_start(); session_start(); if (isset($_SESSION["username"])) { header("location: index.php"); exit(); } ?> <?php // Parse the log in form if the user has filled it out and pressed "Log In" if (isset($_POST["username"]) && isset($_POST["password"])) { $username = $_POST["username"]; // filter everything but numbers and letters $password = (!empty($_POST['password'])) ? sha1($_POST['password']) : ''; // filter everything but numbers and letters // Connect to the MySQL database include "connect.php"; $stmt = mysqli_prepare( $db_conx, 'SELECT username, password FROM members WHERE username = ? AND password = ?' ); mysqli_bind_param($stmt, 'ss', $username, $password); $result = mysqli_stmt_execute($stmt); if ($row = mysqli_fetch_array($result, MYSQLI_ASSOC)) { $_SESSION['id'] = $row['id']; $_SESSION['username'] = $row['username']; $_SESSION['password'] = $row['password'];//and so on //AND CLEAN UP!! mysqli_free_result($result); header("location: index.php"); mysqli_stmt_close($stmt); }else { echo 'That information is incorrect, try again <a href="login.php">Click Here</a>'; exit(); } } ?> and this is my config.php file: <?php $db_conx = mysqli_connect("localhost", "XXXX", "TXXXX", "XXXXX"); // Evaluate the connection if (mysqli_connect_errno()) { echo mysqli_connect_error(); exit(); } else { echo "whoooooooo hoooooooooooooo"; } ?> could some please help me out with this as it really is bugging me to death. Thanks in advance.
-
I have been reading about SQL injection and I want to secure my code. I am not asking anyone to write me a code, but I just want to learn it in simple terms. The best way for me to learn is to edit my code so I can compare them. For example, how secure is this code and if not, how can I make a secure? <?php if (isset ($_POST['email'])) { //Connect to the database through our include include_once "config/connect.php"; $email = stripslashes($_POST['email']); $email = strip_tags($email); $email = mysqli_real_escape_string($db_conx, $email); $password = preg_replace("[^A-Za-z0-9]", "", $_POST['password']); // filter everything but numbers and letters $password = md5($password); // Make query and then register all database data that - // cannot be changed by member into SESSION variables. // Data that you want member to be able to change - // should never be set into a SESSION variable. $sql = "SELECT * FROM members WHERE email='$email' AND password='$password'"; $query = mysqli_query($db_conx, $sql); $login_check = mysqli_num_rows($query); if($login_check > 0){ while($row = mysqli_fetch_array($query, MYSQLI_ASSOC)){ // Get member ID into a session variable $id = $row["id"]; session_register('id'); $_SESSION['id'] = $id; // Get member username into a session variable $username = $row["username"]; $email = $row["email"]; $password = $row["password"]; $firstname = $row["firstname"]; $lastname = $row["lastname"]; session_register('username'); session_register('firstname'); session_register('lastname'); // Update last_log_date field for this member now $sql = "UPDATE members SET lastlogin=now() WHERE id='$id'"; $query = mysqli_query($db_conx, $sql); // Print success message here if all went well then exit the script header("location: members/index.php?id=$id"); exit(); } // close while } else { // Print login failure message to the user and link them back to your login page header("location: login.php"); exit(); } } ?> Thanks in advance
-
Hi, I have been searching for a solution for this for days and I haven't been able to find anything! I found this: dynamic ebay categorys on listing but it doesn't answer the question which is a shame. there are others that I found on google but I have to buy them! I have seen many ebay templates with dynamic categories and i am just wondering how they do that! is there any tutorial that i could follow or anything that I could learn how this is done? it cannot be that difficult as everyone does it these days! Any help would be greatly appreciated. Thanks in advance.
-
echo a message on reaching 0 on jquery countdown timer?
crf1121359 replied to crf1121359's topic in PHP Coding Help
it doesn't work with javascript disabled but at least PHP will echo the "Times Up" message or any other message if the javascript is not enabled. also, its not just the case of echoing a message! What i can do with PHP i wont be able to do with javascript if the user disable their javascript. its just not a good practice to rely on javascript especially in these day and age when there are 1000's of people/hackers trying to make a name for themselves by hacking other people's site. its bad enough to keep up with PHP updated etc... anyway, the $end_date is a field in mysql table which will hold the datetime (time that the item will/should end). -
echo a message on reaching 0 on jquery countdown timer?
crf1121359 replied to crf1121359's topic in PHP Coding Help
you couldn't be more wrong mate, and to prove my point I have another code which will do EAXCTLY what i want but i don't want to use the code as the javascript on the timer is lagging and here is the code: <?php $date = $end_date; $exp_date = strtotime($date); $now = time(); if ($now < $exp_date ) { ?> <script> // Count down milliseconds = server_end - server_now = client_end - client_now var server_end = <?php echo $exp_date; ?> * 1000; var server_now = <?php echo time(); ?> * 1000; var client_now = new Date().getTime(); var end = server_end - server_now + client_now; // this is the real end time var _second = 1000; var _minute = _second * 60; var _hour = _minute * 60; var _day = _hour *24 var timer; function showRemaining() { var now = new Date(); var distance = end - now; if (distance < 0 ) { clearInterval( timer ); document.getElementById('countdown').innerHTML = 'EXPIRED!'; return; } var days = Math.floor(distance / _day); var hours = Math.floor( (distance % _day ) / _hour ); var minutes = Math.floor( (distance % _hour) / _minute ); var seconds = Math.floor( (distance % _minute) / _second ); var countdown = document.getElementById('countdown'); countdown.innerHTML = ''; if (days) { countdown.innerHTML += 'Days: ' + days + '<br />'; } countdown.innerHTML += 'Hours: ' + hours+ '<br />'; countdown.innerHTML += 'Minutes: ' + minutes+ '<br />'; countdown.innerHTML += 'Seconds: ' + seconds+ '<br />'; } timer = setInterval(showRemaining, 1000); </script> <?php } else { echo "Times Up"; } ?> <div id="result"><div id="countdown"></div></div> -
echo a message on reaching 0 on jquery countdown timer?
crf1121359 posted a topic in PHP Coding Help
I am at my wits end with this as i really need to move on and I'm stuck with such a simple task! any help would be greatly appreciated. what I am trying to do is to echo a Times Up message once the countdown reaches 0. I know the plugin has an onExpiry Function but I don't want to use javascript. I want to use PHP so the users can't disable it. This is my full code: <?php error_reporting(E_ALL); ini_set('display_errors', '1'); ?> <?php date_default_timezone_set('GMT'); ?> <?php session_start(); // Run a select query to get my letest 6 items // Connect to the MySQL database include "config/connect.php"; $dynamicList = ""; $sql = "SELECT * FROM item ORDER BY id "; $query = mysqli_query($db_conx, $sql); $productCount = mysqli_num_rows($query); // count the output amount if ($productCount > 0) { while($row = mysqli_fetch_array($query, MYSQLI_ASSOC)){ $id = $row["id"]; $product_name = $row["product_name"]; $date_added = date("Y, m, d", strtotime($row["date_added"])); $end_date = date("Y, m, j, G, i, s", strtotime($row["end_date"])); $price = $row["price"]; $dynamicList .= '<div>' . $end_date . ' </div>'; } } else { $dynamicList = "No Records"; } ?> <?php $tmp_date = explode(', ', $end_date); $tmp_date[1] = $tmp_date[1] - 1; $end_date = implode(', ', $tmp_date); ?> <?php $date = $end_date; $exp_date = date("Y, m, j, G, i, s", strtotime($date)); $now = time(); if ($now < $exp_date ) { ?> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <noscript> <h3>JavaScript is disabled! Please enable JavaScript in your web browser!</h3> <style type="text/css"> #defaultCountdown { display:none; } </style> </noscript> <meta http-equiv="Content-Type" content="text/html;charset=utf-8"> <title>jQuery Countdown</title> <link rel="stylesheet" href="jquery.countdown.css"> <style type="text/css"> #defaultCountdown { width: 240px; height: 45px; } </style> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script> <script type="text/javascript" src="jquery.countdown.js"></script> <script type="text/javascript"> $(document).ready(function () { $('#defaultCountdown').countdown({ until: new Date(<?php echo $end_date ?>), compact: true, onTick: warnUser }); }); </script> </head> <body> <?php } else { echo "Times Up"; } ?> <div id="defaultCountdown" style="font-family:Verdana, Geneva, sans-serif;"></div> <?php } else { echo "Times Up"; } ?> </body> </html> Currently I am using the code above but all i get is the (Times Up) message without anything else on the page and this is when the timer has hours to end but when i remove these lines: <?php $date = $end_date; $exp_date = date("Y, m, j, G, i, s", strtotime($date)); $now = time(); if ($now < $exp_date ) { ?> and <?php } else { echo "Times Up"; } ?> the timer shows up and starts working again. I need to find a way to show/display the Times Up message as soon as the counter hits 0 and I need to do it via PHP for security reasons. Thanks in advance. -
well there are plenty of "references" online if i needed one as I have posted one of the "references" myself!! also, the calculation is done using getOffset function in PHP. there is no need for setting the default time zone on the page at all. please only reply if you can answer the question otherwise everyone can search the net these days mate.
-
Thanks but none of the above URL's help me in what i am trying to achieve! I already know the PHP timezone function and i do not know what the second link has to do with my question!
-
Hello, I need to create a simple PHP script/application which will let the users search for two countries/cities in the world and the time difference between those two places will be shown to them on the page! a simple and good example of this is here: EXAMPLE Can someone please help me out with this. i can follow a tutorial or something as well if there are any? Thanks in advance.
-
auction/ebay style timer using PHP/MYSQL?
crf1121359 replied to crf1121359's topic in PHP Coding Help
Thanks but what is this and how do you use it? I'm keep getting Timer Has Elapsed. on the page!!! -
Hi guys, I need to create a simple timer using PHP/MySQL, something similar to the eBay timer, but without JavaScript. I know eBay uses JavaScript for the timer to start ticking (without page refresh). I don't need this bit. I just need it to show the day/minutes left for "1" item only. I searched on Google and found this code: <?php //list fields and convert to seconds $countdown['days']=(1) * 24 * 60 * 60; $countdown['hours']=(1) * 60 * 60; // etc, etc $countsum=time() + $countdown['days'] + $countdown['hours']; //and so on // the above would be the timestamp to enter into the table ########## // 'dumbed down' query include "config/connect_to_mysql.php"; $result=mysql_query("SELECT * FROM tomProduct ORDER BY id DESC LIMIT 1;"); while ($row=mysql_fetch_assoc($result)) $time=$row['date_added'] - time(); //this field would be a PHP timestamp (time()) $count=getdate($time); $x=getdate(); //todays information $count['mday'] -= $x['mday']; $count['hour'] -= $x['mday']; $count['minutes'] -= $x['minutes']; echo "$count[mday] Days $count[hour] Hours $count[minutes] Minutes"; //etc // untested, but should work ?> I edited and connected it to my own MySQL database to see how it works, and on the page it shows the time in this format : -19 Days -26 Hours -3 Minutes. If I refresh the page every 1 minute, the minutes will increase by 1. So, basically it doesn't count down; it actually counts up. I need this to show how many days/minutes are left for that particular product, and if the user refreshes the page, then the time will change if need be as it does in that script above. Currently the timestamp for the item (when it was posted) gets stored in the MySQL database as "date" and the column called date_added. Could anyone point me in the right direction please? cheers
-
Hello, I have a PHP file that will show some products from Mysql database. this works without any issue. But I need to create an XML file from this PHP file in order to be able to load it into flash. I have done the most part and the PHP file creates an XML file on the server and pulls the data (only text format data, i.e. product name, price, details, date added etc etc) and it works perfectly fine BUT, i don't know what to do for the images part!! This is the original PHP file: <?php // Script Error Reporting error_reporting(E_ALL); ini_set('display_errors', '1'); ?> <?php // Run a select query to get my letest 6 items // Connect to the MySQL database include "storescripts/connect_to_mysql.php"; $dynamicList = ""; $sql = mysql_query("SELECT * FROM products ORDER BY date_added DESC LIMIT 6"); $productCount = mysql_num_rows($sql); // count the output amount if ($productCount > 0) { while($row = mysql_fetch_array($sql)){ $id = $row["id"]; $product_name = $row["product_name"]; $price = $row["price"]; $date_added = strftime("%b %d, %Y", strtotime($row["date_added"])); $dynamicList .= '<table width="100%" border="0" cellspacing="0" cellpadding="6"> <tr> <td width="17%" valign="top"><a href="product.php?id=' . $id . '"><img style="border:#666 1px solid;" src="inventory_images/' . $id . '.jpg" alt="' . $product_name . '" width="77" height="102" border="1" /></a></td> <td width="83%" valign="top">' . $product_name . '<br /> . $price . '<br /> <a href="product.php?id=' . $id . '">View Product Details</a></td> </tr> </table>'; } } else { $dynamicList = "We have no products listed in our store yet"; } mysql_close(); ?> and this is the PHP file that creates the XML file: <?php error_reporting(E_ALL); ini_set('display_errors', '1'); ?> <?php header("Content-Type: text/xml"); //set the content type to xml // Initialize the xmlOutput variable $xmlBody = '<?xml version="1.0" encoding="ISO-8859-1"?>'; $xmlBody .= "<XML>"; // Run a select query to get my letest 6 items // Connect to the MySQL database include "../config/connect_to_mysql.php"; $dynamicList = ""; $sql = mysql_query("SELECT * FROM products ORDER BY date_added DESC LIMIT 6"); $productCount = mysql_num_rows($sql); // count the output amount if ($productCount > 0) { while($row = mysql_fetch_array($sql)){ $id = $row["id"]; $product_name = $row["product_name"]; $price = $row["price"]; $image = $row["<a href='../product.php?id=" . $id . "'><img src='../inventory_images/" . $id . ".jpg' alt='" . $product_name . "'/></a>"]; $date_added = strftime("%b %d, %Y", strtotime($row["date_added"])); $xmlBody .= ' <Data> <DataID>' . $id . '</DataID> <DataTitle>' . $product_name . '</DataTitle> <DataDate>' . $price . '</DataDate> <DataImage>' . $image . '</DataImage> <DataDescr>' . $date_added . '</DataDescr> </Data>'; } // End while loop mysql_close(); // close the mysql database connection $xmlBody .= "</XML>"; echo $xmlBody; // output the gallery data as XML file for flash } ?> <?php echo $dynamicList; ?> by running the code above, I am keep getting this error: XML Parsing Error: junk after document element Location: test.php Line Number 2, Column 1: <b>Notice</b>: Undefined index: <a href='../product.php?id=127'><img src='../inventory_images/127.jpg' alt='Example 1'/></a> in <b>test.php</b> on line <b>21</b><br /> ^ Could someone please help! I am lost!!
-
Hi again, I have a very basic PHP logout file which will destry the session on teh user and will log them out of their account.. This php file works on a server with older version of PHP (000webhosting) But It doesn't work on a server with a newer version of PHP!!! This is the code: <?php session_start(); session_destroy(); $_SESSION = array(); if(!session_is_registered('id')){ $msg = "You are now logged out"; } else { $msg = "<h2>could not log you out</h2>"; } ?> <html> <body> <?php echo "$msg"; ?><br> <p><a href="login.php">Click here</a> to return to our home page </p> </body> </html> anyone knows how to fix this issue? Thanks in advance.
-
PHP member's page works without users credentials?
crf1121359 replied to crf1121359's topic in PHP Coding Help
Thanks. that worked like a charm. -
I have this php member page which will show a very basic information from the mysql database. The issue that i noticed is that if you are logged out and visit the members page i.e.http://www.mywebsite.co.uk/member.php?id=17 and refresh the page from the browser, it will log you into the users account. and it doesn't really matter where and who it is. it will just logs the visitors into that account with id 17 or any other id on PAGE Refresh!! this is my code for member.php <?php error_reporting(E_ALL); ini_set('display_errors', '1'); ?> <?php session_start(); // Must start session first thing // See if they are a logged in member by checking Session data $toplinks = ""; if (isset($_SESSION['id'])) { // Put stored session variables into local php variable $userid = $_SESSION['id']; $username = $_SESSION['username']; $toplinks = '<a href="member.php?id=' . $userid . '">' . $username . '</a> • <a href="member.php">Account</a> • <a href="logout.php">Log Out</a>'; } else { $toplinks = '<a href="join_form.php">Register</a> • <a href="login.php">Login</a>'; } ?> <?php // Use the URL 'id' variable to set who we want to query info about $id = preg_replace("[^0-9]", "", $_GET['id']); // filter everything but numbers for security if ($id == "") { echo "Missing Data to Run"; exit(); } //Connect to the database through our include include_once "config/connect.php"; // Query member data from the database and ready it for display $sql = "SELECT * FROM members WHERE id='$id' LIMIT 1"; $query = mysqli_query($db_conx, $sql); $count = mysqli_num_rows($query); if ($count > 1) { echo "There is no user with that id here."; exit(); } while($row = mysqli_fetch_array($query, MYSQLI_ASSOC)){ $username = $row["username"]; $_SESSION['username'] = $username; $userid = $row["id"]; $_SESSION['id'] = $userid; // Convert the sign up date to be more readable by humans $signupdate = strftime("%b %d, %Y", strtotime($row['signupdate'])); } ?> I know the issue is caused by $userid = $_SESSION['id']; but I cannot figure out how to solve it for the life of me. any help would be appreciated. Thanks
-
mysqli errors all over the input fields?
crf1121359 replied to crf1121359's topic in PHP Coding Help
i think i already said i've fixed it before you posted your comment mate. i use E_ALL because i want to run a script which is absolutely error free and its clean. cant risk using a script with so many hidden errors running in the background! the issue was none of the ones you mentioned! as i posted above before your post, i fixed it by this like: <?php if (!empty($username)) {echo $username;}?> thanks anyway -
mysqli errors all over the input fields?
crf1121359 replied to crf1121359's topic in PHP Coding Help
okay I've fixed it. I needed to change it to this: <?php if (!empty($username)) {echo $username;}?> i hope this helps someone else. -
mysqli errors all over the input fields?
crf1121359 replied to crf1121359's topic in PHP Coding Help
Bump! -
p.s. stop using mysql function. you risk the sql injection and php wont support them soon. use mysqli function instead which is alot harder to use but more secure. I am strugling with mysqli myself by the way.