Jump to content

Steve1957

New Members
  • Posts

    8
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

Steve1957's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. @ xyph 1. Ok YOU may see the solution in my last block of code, but unfortunately I do not! If I did then do you really think I would come on here asking for some assistance..? 2. At no point did I imply it was my code! And being unable to write or read and fully understand this code does not prevent me from having ideas that I think may improve the functionality of the script, or shall we all assume that once a script is written then that is as good as it will ever get..? And yes why shouldn't I try to learn or has it suddenly been made a criminal act on this forum..? Oh & thanks to Kicken I have now learnt about the use of var_dump(). 3. You know nothing of my ability/inability to learn, but as you brought this up let me just inform you that if you take the time to check, there are several different styles & methods of learning "FACT" & unfortunately I have great difficulty in learning from books, because I am unable to relate to what they are talking about! I am the type of person that learns best by hands on experience (practical as opposed to theory), so does my different method of learning make me any less of a person..? No! it simply means that throughout my entire life I have had to put up with very arrogant, self opinionated, self righteous people that could not teach if their life depended on it! Perhaps when you have a moment free you may care to read what is said here: - http://people.usd.edu/~bwjames/tut/learning-style/styleres.html about Kinesthetic Learners. Then perhaps you may have a better understanding of why I appear to try to run before I can walk!
  2. Hi kicken, Thankyou for such a clear & concise explantation, it does make a hell of a difference! Ok I ammended the code to this, as you suggested; $content = str_replace("{price}", $price, $content); var_dump($price); $content = str_replace("{listprice}", $listprice, $content); var_dump($listprice); $savings = str_replace("$ ", "", $listprice) - str_replace("$ ", "", $price); $content = str_replace("{savings}", $savings, $content); var_dump($savings); $discount = round (($savings / $listprice) * 100); $content = str_replace("{discount}", $discount, $content); And attempted to create a fresh post, but I got the following flashed up on the screen before even looking at the post; string(0) "" string(0) "" int(0) When I checked the post no values were displayed at all & no zero "0" either, just a blank space where the value used to be. So if I understand this correctly, these values are being created as strings rather than numeric data & this is what is causing the problem..? Also explains why when I added values to these strings manually, (I only used numbers with no $ sign), it performed the calculation without any trouble at all! Is that correct..?? Assuming this is the problem, how involved would it be to change the script to use numeric data instead of strings..? I have a feeling we are talking a lot of re-written script here..?? Thanks for your help Kicken at least now I have some clue as to what is going on
  3. @xyph, Yes I do appologise, I must have copied the code from the wrong sheet, it should read; $content = str_replace("{price}", $price, $content); $content = str_replace("{listprice}", $listprice, $content); $savings = str_replace("$ ", "", $listprice) - str_replace("$ ", "", $price); $content = str_replace("{savings}", $savings, $content); $discount = round (($saving / $listprice) * 100); $content = str_replace("{discount}", $discount, $content); Now when I originally started this thread, I politely asked if anyone could offer some assistance as php is not one of my strong points & as I have already stated my age, I thought that any sensible person would be able to grasp just how difficult it is for me to learn such a language at this age! I don't know how old you are, but I doubt you were born with this inbuilt knowledge & therefore just step back for a moment and remember just how difficult it was for you when you first started..? Or perhaps a better test would be to empty an entire Landrover engine or gearbox onto a table and see how you fair at rebuilding it (something I can do blindfolded). Now nobody is forcing you to help anyone & if your own lack of understanding prevents you from doing so then so be it and I will bid you farwell & thankyou for the time you have spent on this, sorry you see it as a wasted effort! But before I go I will say that you should understand that for many people that don't know this coding language, sites like this are an absolute treasure. But it can be difficult to come on here cap in hand asking for help, when very often a person may not even know what they are talking about or may not explain themselves using correct terminology & I do understand that this can make it difficult to offer an answer to a query. Nevertheless resorting to a bad attitude, sarcasm & rudeness is not the way to teach those that have come to you for help!
  4. @ xyph, Yes understood, but this is exactly where I am having a problem, I don't yet know enough to understand & impliment the code you are offering as it is completely different to what is in the script I am using! This is the extract from the script that defines the variables being used; $content = str_replace("{price}", $price, $content); $content = str_replace("{listprice}", $listprice, $content); $savings = str_replace("$ ", "", $listprice) - str_replace("$ ", "", $price); $content = str_replace("{savings}", $savings, $content); $discount = str_replace(($savings / $listprice) * 100); $content = str_replace("{discount}", round ($discount), $content); $content = str_replace("{url}", $item->DetailPageURL, $content); $content = str_replace("{avgrating}", $item->CustomerReviews->AverageRating, $content); $content = str_replace("{reviewsnum}", $item->CustomerReviews->TotalReviews, $content); In the template I am using if I place listprice, price or savings within curly brackets, it will return the correct value for each, relevant to that particular post/article. But if I try to do the same with discount it simply returns a zero "0". Yet if I take the two indented lines of code & add to a test.php with manually inserted values for $savings & $listprice, it works perfectly when opened in my browser and returns the correct discount value. Hope that has made it clearer..?
  5. No I most certainly did not ignore any offered solution or suggested code, if I don't respond immediately it means I am either busy or trying to impliment the code! Sorry but it takes me time as I don't know php like you guys do and at 55 years old my brain is not as active or quick as it once was. Hope that clarifies things..? I'm assuming the variable your talking about is $discount & the error is that it always returns a zero "0" even though the other variables of $price & $saving or $listprice, would dictate that it should be a much higher figure than just zero!
  6. @ requinix Doesn't that clearly state that the values are dynamic & continually changing..? So how can I give you any value for these variables...??? Oh and yes when the article / post is finished then all values of prices are displayed in the following manner $??.?? Obviously the ? being replaced by the relevant figure!
  7. Hi requinix, the values of $listprice & $price change with each article/product & ultimately so should the $discount variable that I'm trying to create. I've been trying a few things myself since posting on here & have succeeded in getting a test.php file to produce the correct figure when opened in my browser; <?php $listprice = 495; $saving = 175; // above values are dynamically assigned by the script as each new product article is created. $discount = round (($saving / $listprice) * 100); $content = str_replace("{discount}", $discount, $content); echo $discount; ?> The above code produces the figure 35 which is correct, however as soon as I try to add the following lines of code to the script it constantly returns a zero as the value ! $discount = round (($saving / $listprice) * 100); $content = str_replace("{discount}", $discount, $content); I know I'm almost there, just can't seem to solve this last problem
  8. Hi Guys, I aint too hot on php (more's the pity ), so if one of you clever guys could help me out with this I'd be very grateful. Ok the script I am working with has the variables $listprice (which is the original price), $price (which is the latest price) & what I want to try to do is perform an equation using these variables, in order to produce a value that would then be assigned to $discount and displayed as a percentage. Example: $discount = ((($listprice - $price) / $listprice) * 100); $content = str_replace("{discount}", $discount, $content); Now whilst this will work perfectly if done manually using a calculator, it does not work in php ! it simply keeps returning a "0" irrespective of what the other values are. Any ideas on this would be a great help & much appreciated
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.