Freelancers Network
 
skill list top cap
Homepage
Join the Freelancer's Network
Update your details
Find a freelancer
Post a project
Find a project
Projects Archive
Post a job
Find a job
Jobs Archive
See Dan's Pages
See Andy's Pages
Link to this site
Resources
Join/Leave Forum
Forum Messages
+Additions+ Adverts
Advertising
Contact Us
Subscribe to our newsletter - enter your email address and hit return
Freelancers.net is owned and operated by Andy Stowell and Dan Winchester
skill list end cap
guru web hostcom

Find me again on Freelancers.net

RE: FN-FORUM: Anyone up for a little number puzzle?

date posted 18th January 2008 15:54

> -----Original Message-----
> Hi Guys,
>=20
> I have a small issue, I have third party piece of software that stores
> data in mySQL. It has an invoice table and an invoice_items table
>=20
> The tables are linked together using the invoice id field but the
> original programmer has encoded the invoice id from the invoice table
> and saved the encoded version in the invoice items table. The whole =
php
> application has been zend encoded so I can't check the code for the
> answer.
>=20
> What I'm trying to do is simply create a report using the data. But I
> can't match them up unless I can understand the encoding method.
>=20
> What I have at the moment is this when comparing the invoice id values
> with the encoded values
>=20
> 1 =3D %A4
> 2 =3D %A7
> 3 =3D %A6
> 4 =3D %A1
>=20
> However
>=20
> 10 =3D %A4%98
> 11 =3D %A4%99 NOT %A4%A4 as expected
> 12 =3D %A4%9A
>=20
> And
>=20
> 1024 =3D %A4%98%C4%C0 (Again not consistent)
>=20


So far in WAUK we have gotten this far with it, a php function that =
encodes the numbers 0 to 9 in the right way=20

function encode($i){
$base =3D 0xA; //init base
$i =3D $i ^ 0xF; //XOR with binary 1111
$i =3D $i ^ $base; //XOR with base
$i =3D $i ^ ($base



Messages by Day
January 31st 2008
January 30th 2008
January 29th 2008
January 28th 2008
January 27th 2008
January 26th 2008
January 25th 2008
January 24th 2008
January 23rd 2008
January 22nd 2008
January 21st 2008
January 20th 2008
January 19th 2008
January 18th 2008
January 17th 2008
January 16th 2008
January 15th 2008
January 14th 2008
January 13th 2008
January 12th 2008
January 11th 2008
January 10th 2008
January 9th 2008
January 8th 2008
January 7th 2008
January 6th 2008
January 5th 2008
January 4th 2008
January 3rd 2008
January 2nd 2008
January 1st 2008


Messages by Month
October 2008
September 2008
August 2008
July 2008
June 2008
May 2008
April 2008
March 2008
February 2008
January 2008


Messages by Year
2008
2007
2006
2005
2004
2003
2002
2001
2000