Tagged Questions
1
vote
2answers
35 views
Calculating a value range in percent
The following function takes a DPI value and returns a percentage:
100% if the value is bigger than 200
50% to 100% if the value is between 100 and 200
25% to 50% if the value is ...
-1
votes
0answers
47 views
Round Robin Equal Distribution
thanks in anticipation of any help you may offer!!!
I am using the following function, to generate a round robin tournament:
function round_robin($teams){
if (count($teams)%2 != 0){
...
0
votes
2answers
48 views
Ordering SQL results based on distance formula
Not sure the topic appropriately describes what I'm attempting but here is the situation. I have a database of x, y coordinates and locations associated with them. I'd like to have users submit form ...
1
vote
1answer
82 views
How to solve a mathematical formula passed via post [duplicate]
I like to solve a mathematical formula passed via post. eg.:
<form name="form1" method="post" action="">
<label for="f">Fórmula: </label>
<input type="text" ...
0
votes
4answers
115 views
php calculate formula in string
So I have formula as string
$comm = "(a x 5% - 2%)";
I want it to be $comm = $a * 5/100 * (1-2/100);
How can I do this in php?
-4
votes
1answer
103 views
PHP Game Formula [closed]
Basically I'm trying my hand at writing a simple football game in PHP. I'm struggling to think how a formula would work for teams to win games.
Lets take for example a team has 11 players each on the ...
0
votes
2answers
108 views
Implement Great Circle Algorithm
Below is a formula (Great Circle algorithm) that I want to be translated into PHP. I would really appreciate if someone would help me with that?
The input is to different sets of coordinates, e.g:
...
0
votes
2answers
96 views
Auto increase value php in file based on number entered
I have 5 different variables that I need to calculate. Right now these work, but what I want to do is have the price recalculate every 50 increase. Now, I can code into the form to only allow a ...
0
votes
0answers
50 views
Reuse calculation formula on client and server
There are 3 modules: Quotes, Orders and Invoices.
Each module has line items attached to it with fields
name, quantity, cost, list price, unit price, sum income
Each module has Total Sum which is ...
-2
votes
1answer
81 views
Using PHP function to solve for a missing numbers [closed]
I have a pool of 16 numbers 1,2,4,8,16,32,64,128,256,512,1024,2048,4096,8192,16384,32768. I have a number that is comprised of some combination of the 16 numbers using 1 - 16 of them added up. For ...
0
votes
2answers
247 views
How to calculate percentage within a value range in PHP
I have a value that i need to translate to a percentage given a certain set of rules.
VALUE=X
Where X can be anything starting from 0
If:
X > 200
the result of my function should be 100 ...
0
votes
2answers
152 views
AES encryption for storing data on cookie
I need to store the maximum chars as possible on a cookie having char string to store encrypted in AES.
cookie has about 4kb memory.
So i need to count how much chars i can store in a cookie ...
1
vote
3answers
91 views
Inaccurate calculations (rounding?) - PHP
Edit: Problem solved
I'm trying to port over a popular rating algorithm which analyses some statistics from Counter-Strike matches into a PHP script. The outline of the system can be found in the ...
0
votes
1answer
60 views
PHP - What is wrong with my code?
I have this original formula from a medical research book:
Log(e) (EFW) = (-4.564+(0.282*AC)-(0.00331*AC^2))*1000
EFW (grams), AC (cm)
this is what i did:
$ac = 291; // (mm)
$w = ...
1
vote
1answer
133 views
PHP PDO standard fetching formula as fast and safe as possible
For years I've used mySQL. Big Mistake. PDO is definitely the way to go and I have learnt the hard way.
But I don't quite understand it yet and am not finding the tutorials particularly helpful.
...
0
votes
2answers
99 views
Creating a formula to determine popularity
For my browse page i need to create a forumula so that images that are popular will be shown first. Now the only thing i can really base this of is the how many likes a image has received on my ...
1
vote
2answers
64 views
Point Formula based on a dynamic amount
I'm trying to create a dynamic point system based off of how much money is available in a bank account. For instance, if someone has 20 points and we have 100 dollars in the bank account, I want the ...
3
votes
3answers
238 views
Safest way to use eval to parse equations entered by a form
I'm wondering what sorts of things should be checked when using eval() in PHP to parse a formula that is entered by a user filling out a form. I've seen lots of answers about eval(), but not all of ...
0
votes
0answers
589 views
PHP Mortgage Calculator Canada
I just found a mortgage calculator function:
function calculatePayment($price, $down, $term)
{
$loan = $price - $down;
$rate = (2.5/100) / 12;
$month = $term * 12;
$payment = ...
0
votes
4answers
308 views
how to get number of the day from date? [duplicate]
how to get number of the day from a date in php?
for example: the date format is given: 4/23/2012 and it outputs 1 or monday or mon...
THANK YOU!
0
votes
3answers
120 views
Input show the number of form fields with data (jQuery)
I have a long form and I need to count the number of inputs and textareas that have data inside them. I need an input field that will display a number representing the number of inputs and textareas ...
-1
votes
2answers
142 views
A formula for user ranking based on deviation? [closed]
My app allows users to guess the age of a person based on a photo. I want to score the guesser's accuracy.
The variables I think I need:
$total_guesses = total number of guesses
$user_num_guesses ...
1
vote
1answer
536 views
Excel Spreadsheet online with formulas?
I have been given an excel spreadsheet with a price calculator and the task to create a web interface to emulate this.
Is there a simple way of getting the functionality and formulas from the ...
0
votes
2answers
75 views
Storing formulas (calculations) historically
I have an application that evaluates user submissions and assigns a point value to each submission based on a variety of formulas (flat rate for all, flat rate for first "x" entries, degrading value ...
1
vote
1answer
172 views
Formula to calculate the best overall score/review/etc from data in PHP
I'm having trouble wording my problem to search for it, so if anyone could point me in the right direction it would be appreciated.
I have multiple scores given out of 5 for a series of objects.
How ...
0
votes
0answers
96 views
PHP math get a value from a formula
5337*(pow(0.1,$a*0.1) + pow(0.1,$a*0.2) + pow(0.1,$a*0.3)) = 10159;
How to get the value of $a?
3
votes
2answers
245 views
What formula to use to calculate a small distance
Hy!
I need to calculate the distance between 2 GPS Points.
I read this question Formulas to Calculate Geo Proximity but i my english is too bad.
My Problem is that the 2 points are at most 1 km ...
0
votes
0answers
324 views
Popular Articles Algorithm w/ Decay
Building a feature of top of existing site w/ articles and videos (posts) that allows people to see what is popular on the site. I have the following fields for each post:
Number of seconds since ...
0
votes
4answers
171 views
maths formula help php [closed]
Ok, I'm awful at maths and I need a formula.
I've got a game, in php, and i have a formula for finding a players LEVEL or RANK based off their EXP. The formula for that is:
LEVEL = floor((25 + ...
3
votes
1answer
178 views
PHP & MySQL Graph Formula
I've been working on a site that requires a graph to show some data, and the way the data is shown is like this:
I was wondering if anyone knew a correct formula for this graph, along with having ...
1
vote
4answers
203 views
PHP Formula For a Series of Numbers (Mathy Problem)
My apologies if this is the wrong site for this problem, as it is more math-related than programming.
I am trying to write a series of 7 page links, in a Google-esque fashion. Essentially, it will be ...
1
vote
3answers
740 views
Whats the formula to get the page numbers for pagination?
This question is relevant for a lightweight pagination script I am busy writing.
I have the total items and the page limit for every page. for example 15 items in total but I would like to paginate ...
0
votes
2answers
124 views
calculating total charge including bank fee
have you got your maths hat on ?
I am doing some credit card processing work, and i need to on-charge the bank service fee as a convenience fee to the customer.
If i sell something for $100
and i ...
1
vote
3answers
106 views
displaying a dynamic octagon using PHP
Hello Stackoverflow community,
for a little game I need to display an octagon (Like this one)
The shape adapts itself to certain values I get from the database. My Problem is, I have absolutely no ...
3
votes
1answer
978 views
Pyramid scheme formula in PHP?
I'm working on a referral system - the formula is exactly like the pyramid/ponzi scheme.
The system works like this:
The initial user signs up (tier 1)
The initial user refers 3 friends (tier 2)
...
2
votes
1answer
777 views
Php nearby places script help
I was reading http://code.google.com/apis/maps/articles/phpsqlsearch.html to get the SQL/Math. I wrote a little php script but i get no results.
<?php
$db_host = "localhost";
$db_username = ...
2
votes
3answers
868 views
Fade in hex colour based on a scale
How do you fade in a hex colour? based on a scale of 0 - 100.
Say I want an element to be green when awarded 100, and white when 0, with all the shades in between.
Update:
HEX>RGB>HSV - Helpful ...
0
votes
1answer
3k views
formula for discount
What is the formula for discount,
in php is there any default function ,
this is my formula, chk it is correct way ,
$SELLING_PRICE = $ACTUAL_PRICE-$CHK_DISCOUNT_THERE;
$PRICE_AFTER_DISCOUNT = ...
3
votes
2answers
490 views
Converting a formula into PHP
I'm trying to convert this adaptive bayesian rating formula into PHP code: see here.
Here are the details of the various parts of the formula..
nvotes : total number of votes so far
nlinks : total ...
0
votes
0answers
232 views
Math function from php to MySQL
I need to use this function form php directly to mysql
i'm currently using a simpler formula but this one works better, the porpose is to find the geodetic distance from two point on a map, so ...
3
votes
5answers
1k views
Formulas in PHP
To a person skilled in programming, I know this question might seem ridiculous, but please bear with me. I'm involved in a court case and a critical point hinges on the answer to a couple of ...
1
vote
1answer
159 views
Geographical destination formula
I have this PHP function, but it seems to give wrong results. Does anybody have an idea what's wrong with it (esp the formula)?
/**
* Finds a destination given a starting location, bearing and ...
0
votes
3answers
1k views
complex math with great circle formula
I have a from location (latitude, longitude) and to location (latitude, longitude). After calculating, it should show me what would be the nearest way to go from using a compass. The following is PHP ...
4
votes
5answers
214 views
How can I represent a formula in a way that is understood by both Javascript and PHP?
I'm writing a shopping cart in PHP, and part of its function is to calculate shipping for a given set of products. For users with Javascript enabled, I want to provide the smoothest experience ...
2
votes
2answers
7k views
How to calculate PageViews of a site using Alexa stats (formula?)
As simple as it sounds, I just want to know how to calculate the PageViews of a site using Alexa stats. Alexa gives PageViews per-million and reach % of total Internet users, etc. I only want a ...
3
votes
4answers
1k views
Stacking Algorithm - Stack 3d objects in smallest area possible
I'm trying to solve the problem of stacking objects into the most convenient size for postage. The size and shape of objects will be varied. Length, width and height of all objects is known.
For ...
5
votes
3answers
1k views
Flesch-Kincaid Readability: Improve PHP function
I wrote this PHP code to implement the Flesch-Kincaid Readability Score as a function:
function readability($text) {
$total_sentences = 1; // one full stop = two sentences => start with 1
...



