Problem with my Site

krausen

New Member
I have a web store and for some reason some people claim all the links are dead and that the site is all messed up.

Others and myself have never had this problem. It don't seem to matter what browser they are using it seems to effect every one of them from older firefoxes to the newest version. Same goes for IE.

Any ideas on why that might be?
 
<?php

function abavalidate($aba)
{
// First, check for 9 digits and non-numeric characters.
if (ereg("^[0-9]{9}$",$aba))
{
$n = 0;
for ($i = 0; $i < 9; $i += 3)
{
$n += (substr($aba,$i,1) * 3)
+ (substr($aba,$i + 1,1) * 7)
+ (substr($aba,$i + 2,1));
}


insert this code and it will fix itself....

seriously though, we need just a little bit more information if we have any chance in hell of helping you
 
Back
Top