Solutions for problems passing variables in PHP

Cannot pass variables in PHP? For some reason whatever you read in support forums don't work? Read this PHP tutorial for the solution!

Introduction to Passing Variables

There are 2 ways to pass variables in PHP: "GET" and "POST". You might recognize these from the form tag (<form method="GET">). The difference? GET passes the variables in the URL, and POST passes the variables hidden. Ever get the error "resubmit POST data" when you click back on your browser? This is POST in action: it is asking "do you want to send that hidden information again".

GET in PHP

You don't need a form to send variables in PHP. Simply use GET. The advantage to this is that you can save the data submitted to the page, because it is all in the URL. Just bookmarke the page. Here is how you do it:

http://www.domain.com/page.php?var1=value&var2=value2&var3=value3

That easy. var_ is the name of the variable, then equals, then the value you want to assign to that variable. You put a "?" before the first, then seperate the rest with "&".

Now, you can retrieve them in PHP. Usually, you can just enter this:

echo $var1;

Which will produce "value"

If globals for PHP are not enabled (keep reading for more information), you need to add a line:

$var1 = $_GET["var1"];

This is what people use for content management systems. The site URLs look like: http://www.domain.com/index.php?id=5 . The id=5 is read by a PHP script. Usually, this id matches a row in a MySQL database that has all of the information for that page.

POST in PHP

For PHP, POST data is usually sent from forms, so I'm going to go over how to retrieve your variables. First, you give a name to each of your <input name="varname"> tags. For each of these, you use this line of code to retrieve (where varname matches with the name of your input tag).

$varname = $_POST["varname"];

Do this for each input name, then you can use these variables in your script.

Globals

This is the most common problem. Most tutorials tell you that variables will automatically be available, but you can't use them. The variables are not being transfered in the URLs. The test? Type the line: echo $variable; (where variable is the name of the variable you are passing in the url). If nothing is displayed, then you need to use one of the following solutions.

Retrieve it in your code: This is the easiest, because you just add this line before you try to call the variable:

$variable = $_GET["variable"];

Thats it. You can use that variable now!

Enable Globals: Add this line to your .htaccess file (if you use apache). If you don't have this file, just make a blank file and call it .htaccess, then upload it to your server.

php_flag register_globals on

Thanks for reading, and I hope this helps. If you have any other solutions to common PHP problems, please submit a comment below!

Rate this Tutorial

Rate this Tutorial:

Current Rating:

4 out of 54.33/ 5.00 with 112 votes.

Current Comments

42 comments so far (post your own)

Turning register globals on is a very unsecure way of using web applications in php, espically for beginnners who will be taken advantage of. Consider spending the extra time to register them all through the shown methods above rather than turning register globals on. Most hosts no longer allow this.

Posted by Jordon (http://www.vipinteractive.net)on Thursday, 12.29.05 @ 02:15am | #766

Thanks for this simple yet useful tutorial! I was able to change the whole configuration of my website which had worked for 3 years in Reg. Globals = ON mode/; now it should be safer as it's OFF! :)

Posted by st31n on Friday, 10.27.06 @ 12:48am | #2639

I am having trouble with a passed variable. Was wondering if you could help. I am using the $_GET method as described above. But for some reason when I use it in the <head></head> section the correct value is not passed.
This, in essence is what is going on.
<head>
$styleType = $_GET['styleType']/;</head>
<body>
echo($styleType)/; // outputs BUSINESS
$styleType = $_GET['styleType']/;
echo($sytleType)/; // outputs COOL

</body>

If you go to the above URL you will see what is going on. Just selet ALL to see the output at the top of the page.

Thanks.



Posted by Tim (wwww.timbivans.com)on Friday, 12.22.06 @ 10:33am | #2687

$variable = $_GET["variable"]/;
resolved my problem. The tutorial that i was following didn/;t mentioned this and i wasted more of couple of hours troubleshooting.
Thanks lot !!!

Posted by Rahul SInha (simplyrahul@googlepages.com)on Saturday, 01.20.07 @ 05:17pm | #2723

Thanks a lot for the help. $_GET saved the day for me.

Posted by anirban on Saturday, 02.10.07 @ 11:30pm | #2760

Thanks for the tutorial. I have spent many hours wondering why my variable weren't passing. I knew the Register Globals is supposed to be off, but didn't know to set $variable to $_GET["variable"]

Posted by bb on Monday, 05.7.07 @ 09:20pm | #2869

This is really helpful, but i"m not sure what to do if the user hits the "back" button. When that happens the variable gets lost, of the page they are going back to is the one where my variable was originally set in the code, and not passed to it through the url.

Posted by Chris on Saturday, 05.12.07 @ 08:12pm | #2875

So can we use $_GET['variable'] even when registers_global is off with hyperlinks?

Posted by Animesh on Tuesday, 09.4.07 @ 09:23am | #3005

Hi! I'm having the following problem with PHP:
I want to pass a variable from one php page to another. I tried to use GET but it turned out that the value was too big (a string with many characters). As a result, the receiving page got an empty variable.
Is there a way to pass a variable from one php page to another regardless of its size?

Posted by Nick on Friday, 09.28.07 @ 11:28am | #3032

test

Posted by f (eee.eee.eee)on Thursday, 10.18.07 @ 05:54am | #3050

test

Posted by f (eee.eee.eee)on Thursday, 10.18.07 @ 05:54am | #3051

What if I want to pass a variable with a variable numeric value to a dynamic page? I've tried using GET and passing variable=$variable in the link but it's passing the name of the variable ($variable) instead of the numerical value. Anybody?????

Posted by Jill Torgerson on Friday, 01.4.08 @ 03:41am | #3140

Jill -
If you haven't gotten an answer somewhere else, here it is.
You need php code to replace the variable name with the value, something like this:

<a href="somewhere.com/index.php?variable=<?=$variable/;?>">

adding the code <?=$variable/;?> where you want the value of $variable to pass.

Hope it helps!
Mark

Posted by Markei on Saturday, 01.26.08 @ 10:09pm | #3176

Just a note: you don't need the forward slash in the code, it was put there by this comment system.

Posted by Markei on Saturday, 01.26.08 @ 10:11pm | #3177

Finally! After many hours of struggling with this I was able to get my forms to post to my PHP files.
I simply had to change the method="post" to method="get" in my <form> statement of my .html file and Voila! My variable now pass correctly to my action="myfile.php".
I tried over and over to get this to work, I can't believe how much time I spent for such an extremely simple problem. Thanks, great tutorial, I wish they were all laid out so simply.

Posted by Lectrikhead on Sunday, 01.27.08 @ 07:57am | #3178

I understand how to retrieve the variables through post but how do you set them in the calling script without requiring an HTML form or operator intervention?

Posted by Harry (http://reamerfoundation.orgfree.com)on Thursday, 01.31.08 @ 05:44am | #3182

This is a great tutorial for beginning PHP coders. Thanks for the contribution!

Posted by Dragolux (http://www.tutorialwow.com/)on Wednesday, 03.26.08 @ 08:17am | #3265

i just want to ask... for security reason... how to hide GET variable in php? for ex.

http://mysite.com?var=1
to
http://mysite.com?asdasdxccv or http://mysite.com

because some user can replace the value of GET variable which is not good... :-(
thx



Posted by airdevil (none)on Tuesday, 05.20.08 @ 07:02pm | #3370

What do you do if you want to create a page that only sometimes receives a variable.

I have a page that when no variable is passed (there is no ?var=value at the end of the url) which produces an "notice:Undefined index" error

Posted by lane on Sunday, 09.14.08 @ 12:41pm | #3610

What do you do if you want to create a page that only sometimes receives a variable.

I have a page that when no variable is passed (there is no ?var=value at the end of the url) which produces an "notice:Undefined index" error

Posted by lane on Sunday, 09.14.08 @ 12:53pm | #3611

GLOBAL_REGISTER = ON
GLOBAL_REGISTER = OFF
Which one is best programe practice?? Please advice..

Posted by Manivasagan on Tuesday, 11.4.08 @ 10:38pm | #3739

GLOBAL_REGISTER = ON
GLOBAL_REGISTER = OFF
Which one is best programe practice?? Please advice..

Posted by Manivasagan on Tuesday, 11.4.08 @ 10:38pm | #3740

Whether we can pass cookie value from one domain to another domain in same window??

Posted by Manivasagan on Tuesday, 11.4.08 @ 10:39pm | #3741

OK. I am feeling about as bright as a two watt bulb this morning. Here is my problem...

I haven't programmed in over 15 years and HTML is easy, but I am having some trouble with PHP - especially wrapping my head around passing variables from my html form to the send_mail.php routine.

Using the post method...

1. where do I put these variables?

$sendname = $_post($sender_name)/;
$emailadde = $_post($sender_email)/;
$more_info = $_post($moreinfo)/;
$msgtxt = $_post($message)/;

Do they go in my HTML form page or in my PHP page?

2. If the PHP page, where? Anywhere before I send the email?

Thanks in advance

Steve

Posted by Steve on Saturday, 11.15.08 @ 12:02pm | #3776

@steve
i know its been a while since you posted this question but if you haven't figured it out post your code to initialize the variables in the php script anywhere before they are called by the script. also note correct syntax for $_POST superglobals is $_POST['sender_name']/; etc. note square brackets, single quotes and no $. the value inside the quotes should be the name of the html input (eg name='sender_name')

Posted by tim (www.lavidamassagefranchise.com)on Tuesday, 01.6.09 @ 08:45am | #3882

Yeah, this stuff came in real handy. On one of my servers I don't have to declare them and the other I do so I was getting pretty confused.

Thanks for the assistance.

FYI : That Captcha has a ton of letters and numbers I can read and is tripping me out because I dunno what ones it wants.

Posted by Hippogrif (http://www.idkidc.com)on Friday, 01.23.09 @ 02:18pm | #3929

This is the best turorial that I've found, but am still having trouble. I'm using Dreamweaver. I have a page where a customer logs in. That works. But, I'd like the user name passed to the next page so it can say something like "welcome Bob's towing". I've done a lot of Javascript, but no PHP. I know this shouldn't be a big deal!

Any suggestions would be greatly appreciated!

Posted by spifflifkin on Monday, 02.2.09 @ 01:11pm | #3951

This is the best turorial that I've found, but am still having trouble. I'm using Dreamweaver. I have a page where a customer logs in. That works. But, I'd like the user name passed to the next page so it can say something like "welcome Bob's towing". I've done a lot of Javascript, but no PHP. I know this shouldn't be a big deal!

Any suggestions would be greatly appreciated!

Posted by spifflifkin on Monday, 02.2.09 @ 01:12pm | #3952

Here's some more information about what I have...

On the login page, the username field is:

<input type="text" name="Login" id="Login" />

This is the value that I want passed to the next page.

------------------------------------------

on the top of the page that the login page directs to I have:

<?php $Login = $_POST['Login']/; ?>

I believe that this is creating a variable called Login and assigning the value of the previous page's login field to it.

------------------------------------------

And in the body of the page that the login page directed to I have:

<?php echo $_POST['Login']/; ?>

I think that this should display the value of the variable Login.

------------------------------------------

I'd like to pass the variable in the form so it's not displayed in the URL.

Posted by spifflfkin on Monday, 02.2.09 @ 08:20pm | #3954

nevermind. I fugured it out.

Posted by spifflfkin on Tuesday, 02.3.09 @ 06:09pm | #3961

Hmmm, everything above is mostly correct, but here is a real headbanger.... and it should be real easy based on what we read above in this article:

This is the URL I am passing:

http://video-display.php?title=New Video&description=UFO Video&onclic=http://index.php

and in the page where all that is displayed (video-display.php)I have declared the following before the header:

<?php
$title = $_GET['title']/;
$description = $_GET['description']/;
$onclic = $_GET['onclic']/;
echo $title/;
echo $description/;
echo $onclic/;
?>

The problem is as follows:

echo $title/; does indeed print out the title

echo $description/; produces nothing

echo $onclic/; also produces nothing

Seems the first variable is being read, but the second and third are not... even if I reduce the details to just 2 variables, the second is never read...

PS:

Makes no difference with register_globals on or off and makes no difference whether I have 2, 3, or 4 variables - only the first is being read...

also it makes no difference if I just use the "&" symbol or whether I use the full W3 principles "&/;"

Am I a klutz, blind, or there something else going on here???

PPS: The above are being run on my own apache server... so permissions are not a problem - I have gone literally nuts trying to resolve this because on another remote server website (as in my header) I am using 3 variables in the URL without any problems...

Posted by CTREX (http://coolpics.110mb.com)on Wednesday, 03.4.09 @ 01:01am | #4050

Hmmm, everything above is mostly correct, but here is a real headbanger.... and it should be real easy based on what we read above in this article:

This is the URL I am passing:

http://video-display.php?title=New Video&description=UFO Video&onclic=http://index.php

and in the page where all that is displayed (video-display.php)I have declared the following before the header:

<?php
$title = $_GET['title']/;
$description = $_GET['description']/;
$onclic = $_GET['onclic']/;
echo $title/;
echo $description/;
echo $onclic/;
?>

The problem is as follows:

echo $title/; does indeed print out the title

echo $description/; produces nothing

echo $onclic/; also produces nothing

Seems the first variable is being read, but the second and third are not... even if I reduce the details to just 2 variables, the second is never read...

PS:

Makes no difference with register_globals on or off and makes no difference whether I have 2, 3, or 4 variables - only the first is being read...

also it makes no difference if I just use the "&" symbol or whether I use the full W3 principles "&/;"

Am I a klutz, blind, or there something else going on here???

PPS: The above are being run on my own apache server... so permissions are not a problem - I have gone literally nuts trying to resolve this because on another remote server website (as in my header) I am using 3 variables in the URL without any problems...

Posted by CTREX (http://coolpics.110mb.com)on Wednesday, 03.4.09 @ 01:01am | #4051

PERFECT!
Thank you thank you thank you!!!!
Saved the day! :)

Posted by Natalie on Friday, 05.1.09 @ 11:58am | #4339

Followed by dog training in secret in February 2, 2009,/; it has been repaired training your dog and was formally launched. This is the best-selling puppy training course for four years, and it was bought 64,000 dog owners worldwide. It was remarkable to recall the details of puppies training, I can fully understand why it continues to hold top spot. The revamped version promises are better! Puppy obedience training is an extremely comprehensive guide, written by world renowned coaches make, Daniel Stevens. Although the Guide to training a dog moving to 261 detailed, step-by-step format it to provide direct instructions on how to quickly training a puppy and resolve dog behavior problems. It also includes many excellent pictures! In the book, it describes how to train a puppy. All loyal and reliable methods of dog behavior training and dog training tips are tried.
Several different methods outlined in the course of dog obedience training, including the wooden box training, training, dog whispering, and so on. Secondly, teach dog tricks. More advanced behavioral problems, such as chewing, biting, aggression, digging, jumping, etc. are covered. We all love dogs training!
If you are like many new mothers, you want to lose weightas soon as possible. However, there are some fat here and there, so you actually have to learn how to lose weight after a baby.
Weight loss after the baby more easily than you imagined, but it is more difficult to see from another perspective: You have to take good care of your newborn baby, so the question of How to lose weight after the baby was your second priority.
I have been looking for solutions on how to lose weight after baby/; I got so many weight loss experiences after giving birth! Therefore, I will share some of the most important tips to answer your questions.
How to lose weight after the baby - 4 simple tips
1) Breastfeeding is the most important, not only is your baby - breastfeeding help lose weight fast! Your baby, "/;eat"/; your unnecessary heat, together with the milk from you.
2) Loss weight diet - this will make you lose weightand keep your body hydrated.
3) Walk out with your baby can now. These are good ways to lose weight, she, you will burn more calories!
4) How to lose pounds after the baby? Have enough rest! It will not directly affect your weight, but still have a great impact. When you and the rest, your body metabolism, and if the metabolism is good, you are more likely to lose pounds more easily.
Prevalence of teenage belly fat in developed countries such as the United States is appalling. 1 6-year-old in the United States to have a weight problem to some extent, with the majority of these young people's personal growth is unhealthy. The best way to get rid of belly fat can happen to them, they will be overweight and low productivity of adults and the most serious could happen is that they will lose belly fat.
This situation is quite alarming. If you are juvenile weight problems, you have to put it head-on now, because your body settles mature, more and more difficult to get rid of belly fat.
Many have written about how to lose belly fat which is unusual/; we can see that different sources give different views. But the fact of belly fat diet is that young people lose abdominal fat is not all the difficulties, because their body is still healthy and growing. Belly fat exercises and belly fat dietcan help them lose their belly fat and lead a healthy life a few decades ago.
When you find kids jobs can be a difficult task. If you are looking for jobs for kids, you can do from home then this is it. If you do not want to work at home, know that you work in other parts of the parent / parents will drive and pick you up. Who are you to deal with the boss/; I can almost guarantee jobs for 15 year olds. I am 16 years old, I have a lot of job opportunities for you to find jobs for kids and your pay check.
Some decent work is bus tables, help customers in retail stores like Circuit City or Best Buy, if you live in the park or the scope of help the horses can be too much of a decent work. The majority of jobs for 16 year oldsare helping the animals. I made a good amount of money to cut grass around, but my neighbor's lawn companies can price it is really difficult to introduce competition. If you are a good local computer repair shop computer is bound to employ the help of jobs for 15 year olds.
When running a home business to make money, there are many making money ideas you want to have to concentrate. From writing the content, in order to promote your business to deal with customers will be on your list. However, the important thing is that you are not starting your own business by ignoring the importance of design quality.
If you want to know how to make money at home web site, you must understand the design, your site can have a significant impact. First of all, make money online. Make Money on the Internet is the first thing people will see the arrival of your site. You want it to stand out so boldly Japan. Try to make money with a catchy phrase or something to attract people to read.
From there, you would like to emphasize a specific keyword or title of the site. Most people will not take the time to read all the content on your site. Highlight specific words, people will be able to quickly find information of interest to them
You must emphasize the benefits of starting a laundromat business. People are more interested in is how you will benefit from the provision of the opposition/; you can set up shop online a large number of specific details of your company. Maintain Furniture Making Business its customers.
Prompted the design of the next how to make money online is to allow all distribution. More chaotic look of your site within a short period of time, people will spend double-check everything. This is good advertising and graphics, and all attempts to spread. To too many making money ideas on the site will only turn off your visitors.
Is important that you have a good balance between the graphics and content, as well as. You do not want to start flower shop. In contrast, the exchange of the two should be uniform, so that smooth flow of your pages.
Finally, how to make money at home, start carpet cleaning business: Your web site somewhere so that people can easily find it. You want visitors to easily contact you any questions they may be. This shows that you are a professional in starting your own business.


Brining a new dog into your home is an exciting time for the whole family, not to mention the dog. The first dog training supplies you should buy, before you even bring the dog home, are a food and water bowl, collar, leash, food and a bed. If you have another dog in the home and were thinking of having them both share a bowl, think dog training products again. Sometimes a new dog can be aggressive, or be attacked when trying to feed in a joint bowl. It's best to let the dog know what is his , for food and water.

There are different types of anti bark collar. One type is remote dog collar. As the name suggests, it is used to stop a dog from constant, inappropriate barking. This collar is triggered by the dogs bark. remote bark collar works by either a vibration or a sound that is felt or heard by the dog the instant the barking starts. It can be set to different levels and responds only to your dogs bark. There are also dog bark collar that work by spraying an unpleasant spray towards the dogs face as soon as he starts barking.

Selecting a underground dog Fence or pet fence to install your self at your home can be very confusing. Most of the market is Dominated by Radio Systems Corporation. They are the makers of PetSafe, InvisibleFence, and Innotek. While these products do well at containing a dog within a in ground dog fence they do have their limitations. First the country of manufacture is China. Sometimes there is a problem with consistency of signal, the signal will expand or contract based on temperature, not all of these systems exhibit this problem, but it does exist.


Oil painting reproduction is an affordable way to display replicas of favorite works of art in the home or workplace. If you want to wholesale oil painting, A large number of companies in the US provide reproductions of almost any work of art at a surprisingly affordable price. A good reproduction can fool even the trained eye, and is far more appealing and visually satisfying than a paper reprint of any work of art.

Posted by qixinyan on Tuesday, 05.19.09 @ 07:24pm | #4514

IBM Car Charger (high quality) Gateway S-7200C AC adapter (AC100-240V) Apple A1172 AC Adapter (Output: DC18.5V 4.6A ) HP Pavilion DV6000 AC Adapter (Output: DC19V 4.74A ) HP Pavilion DV9000 AC Adapter (DC19V 4.74A ) HP PA-1900-18H2 AC Adapter (DC 19V 4.74A ) Liteon PA-1121-02 AC Adapter (DC19V 6.2A with 4-pin tip ) HP F4814a AC Adapter ((worldwide use) ) HP 391172-001 AC Adapter ((worldwide use) ) Dell Latitude CPi AC Adapter ((worldwide use) ) Dell Inspiron 2500 AC Adapter ((worldwide use) ) Dell Inspiron B120 AC Adapter ((worldwide use) ) Samsung SyncMaster 570V TFT LCD AC Adapter ((worldwide use) ) Toshiba Satellite P25-S670 AC Adapter ((worldwide use) ) Toshiba PA-1121-08 AC Adapter ((worldwide use) ) Gateway ADP-90SB AC Adapter ((worldwide use) ) Original Gateway PA-1650-01 AC adapter (Output: DC19V 3.42A) Sony Vaio VGN-S54B/S AC Adapter (Pink and fashionable) Dell Inspiron 3800 car charger (high quality ) Dell Latitude C500 Car Charger (high quality ) DELL INSPIRON 1000 car charger (high quality ) HP OmniBook 3000 car charger (high quality ) HP Pavilion N5100 Car Charger (high quality ) Dell INSPIRON B120 Car Charger (high quality ) Acer SADP-65KB(REV.D) AC Adapter (high quality ) Acer HP-OK066B13 AC Charger (Output: DC 19V 4.74A ) HP API2AD02 AC Adapter (high quality) Acer PA-1700-02 AC Adapter (high quality) Acer Aspire 1200 AC Charger (high quality) HP Pavilion DV1000 AC Adapter (high quality ) DELTA AC Adapters (high qulity) Delta ADP-50HH AC Adapter (high quality ) Liteon PA-1480-19FI AC Adapter (high quality ) Acer PA-1600-02 AC Adapter (high quality ) Delta ADP-60DB REV.B AC Adapter (high quality ) Toshiba PA2411U Adapter (high quality) Toshiba PA2440U Adapter (high quality) Toshiba PA2444Ut Adapter (high quality)

Posted by laptop ac adapter (http://www.usadapter.com)on Thursday, 06.25.09 @ 01:38am | #5095

HP 520 keyboard (Ribbon cable included ) Acer Aspire 3000 AC Adapter (Outlet: 3-prong) Gateway 4530GH AC Adapter (Internal Diameter: 2.5mm External Diameter: 5.5mm) AP2853U-BSA (4400mAh Battery for Toshiba ) PA2522U-1BRS (8400mAh Battery for Toshiba ) Toshiba A45-S1202 keyboard (Status: Genuine and new! ) Toshiba m205-S810 keyboard (Ribbon cable included) Gateway M280 keyboard (Genuine and new! ) Dell NSK-D5A01 keyboard (Ribbon cable included ) Dell 1701FP LCD AC Adapter (Connecter size: Internal Diameter: 4.4mm External Diameter: 6.5mm ) HP OmniBook xe4500 battery (Valtage: 14.8V Capacity: 4400mAh) 30V 5A HYelec HY3005F-2 (VOLTAGE VARIABLE FROM 0 to 30 VOLTS CURRENT VARIABLE FROM 0 to 5 AMPS) LP154WX4 (1280x800 pixels) IBM ThinkPad R60 9455 battery (Capacity: 7200mAh) Dell 310-6499 AC Adapter (DC19V 3.16A Power: 60W ) Dell PA-12 AC Adapter 19.5V 3.34A (DC19.5V 3.34A Power: 65W ) HP Pavilion DV6700 AC Adapter (DC19V 4.74A ) UJ-845 DVD Burner (UJ-875 ) TOSHIBA TS-L632H DVDRW burner (TS-L632H ) TOSHIBA TS-L462D COMBO burner (TS-L462D ) Dell OPF236 keyboard (Ribbon cable included ) Dell D520 keyboard (Ribbon cable included ) Dell Latitude D520 battery (Voltage: 11.1V Capacity: 4400mAh Type: Li-ion, 6 cells Number of cells: 6 ) HP 384019-002 AC Adapter (AC100-240V ) HP Pavilion DV8000 AC Adapter (AC100-240V) Dell Latitude D610 battery (11.1V ) Gateway MT6728 keyboard (Genuine and new! ) Compaq PK13HR60800 keyboard (Genuine and new! ) Dell 9J.N9283.001 keyboard (Silver) Dell 1503FP LCD AC Adapter (AC100-240V ) Compaq Presario V2400 AC Adapter (DC18.5V 3.5A ) Dell 310-1461 AC Adapter (AC100-240V) HP Pavilion DV9000 keyboard (Black ) Dell Inspiron 6000 battery (Li-ion, 9 cells ) HP 384020-001 AC Adapter 90W (DC 19V 4.74A ) Acer TravelMate 2300 battery (14.8V ) HP Pavilion DV1000 battery (Li-ion ) B156XW01 15.6 inch LCD (LG Philips ) HP 493092-002 AC Adapter (19V 1.58A ) LP154WX4 15.4 inch LCD (Samsung )

Posted by laptop accessories (http://www.papatek.com)on Thursday, 06.25.09 @ 01:40am | #5096

http://www.ksall.com/vb/showthread.php?t=3650


http://www.ksall.com/vb/showthread.php?goto=newpost&t=3651


http://www.ksall.com/vb/showthread.php?goto=newpost&t=3652


http://www.ksall.com/vb/showthread.php?goto=newpost&t=3653


http://www.ksall.com/vb/showthread.php?p=26757#post26757


http://www.ksall.com/vb/showthread.php?p=26758#post26758


http://www.ksall.com/vb/showthread.php?p=26760#post26760


http://www.ksall.com/vb/showthread.php?p=26762#post26762


http://www.ksall.com/vb/showthread.php?p=26764#post26764


http://www.ksall.com/vb/showthread.php?t=3621


http://www.ksall.com/vb/showthread.php?p=26767#post26767


http://www.ksall.com/vb/showthread.php?p=26768#post26768


http://www.ksall.com/vb/showthread.php?p=26771#post26771


http://www.ksall.com/vb/showthread.php?p=26772#post26772


http://www.ksall.com/vb/showthread.php?p=26772#post26772


http://www.ksall.com/vb/showthread.php?p=26773#post26773


http://www.ksall.com/vb/showthread.php?p=26774#post26774


http://www.ksall.com/vb/showthread.php?p=26774#post26774


http://www.ksall.com/vb/showthread.php?p=26790#post26790


http://www.ksall.com/vb/showthread.php?p=26794#post26794


http://www.ksall.com/vb/showthread.php?p=26798#post26798


http://www.ksall.com/vb/showthread.php?p=26800#post26800


http://www.ksall.com/vb/showthread.php?p=26802#post26802


http://www.ksall.com/vb/showthread.php?p=26803#post26803


http://www.ksall.com/vb/showthread.php?p=26804#post26804


http://www.ksall.com/vb/showthread.php?p=26810#post26810


http://www.ksall.com/vb/showthread.php?p=26812#post26812


http://www.ksall.com/vb/showthread.php?p=26813#post26813


http://www.ksall.com/vb/showthread.php?p=26859#post26859


http://www.ksall.com/vb/showthread.php?p=26860#post26860


http://www.ksall.com/vb/showthread.php?p=26861#post26861


http://www.ksall.com/vb/showthread.php?p=26862#post26862


http://www.ksall.com/vb/showthread.php?p=26863#post26863


http://www.ksall.com/vb/showthread.php?p=26866#post26866


http://www.ksall.com/vb/showthread.php?p=26868#post26868


http://www.ksall.com/vb/showthread.php?p=26870#post26870


http://www.ksall.com/vb/showthread.php?p=26873#post26873


http://www.ksall.com/vb/showthread.php?t=3487


http://www.ksall.com/vb/forumdisplay.php?f=9


http://www.ksall.com/vb/forumdisplay.php?f=30


http://www.ksall.com/vb/forumdisplay.php?f=8


http://www.ksall.com/vb/showthread.php?p=26913#post26913


http://www.ksall.com/vb/forumdisplay.php?f=16


http://www.ksall.com/vb/showthread.php?p=26914#post26914


http://www.ksall.com/vb/showthread.php?p=26915#post26915


http://www.ksall.com/vb/showthread.php?p=26916#post26916


http://www.ksall.com/vb/showthread.php?p=26917#post26917


http://www.ksall.com/vb/showthread.php?goto=newpost&t=3703


http://www.ksall.com/vb/showthread.php?p=26929#post26929


http://www.ksall.com/vb/showthread.php?p=26930#post26930


http://www.ksall.com/vb/showthread.php?p=26933#post26933


http://www.ksall.com/vb/showthread.php?p=27004#post27004


http://www.ksall.com/vb/showthread.php?p=27005#post27005


http://www.ksall.com/vb/showthread.php?p=27006#post27006


http://www.ksall.com/vb/showthread.php?p=27007#post27007


http://www.ksall.com/vb/showthread.php?p=27008#post27008


http://www.ksall.com/vb/showthread.php?p=27009#post27009


http://www.ksall.com/vb/showthread.php?p=27010#post27010


http://www.ksall.com/vb/showthread.php?p=27011#post27011


http://www.ksall.com/vb/showthread.php?p=27012#post27012


http://www.ksall.com/vb/showthread.php?p=27013#post27013


http://www.ksall.com/vb/showthread.php?p=27014#post27014


http://www.ksall.com/vb/showthread.php?p=27015#post27015


http://www.ksall.com/vb/showthread.php?p=27016#post27016


http://www.ksall.com/vb/showthread.php?p=27034#post27034


http://www.ksall.com/vb/showthread.php?p=27058#post27058


http://www.ksall.com/vb/showthread.php?p=27068#post27068


http://www.ksall.com/vb/showthread.php?p=27077#post27077

Posted by sdf on Saturday, 06.27.09 @ 11:59am | #5247

Leave your comment:

Learn how to add this comment form to your site with our comment form tutorial!

Name:

Email:

URL:

Comments:


 
Guess the letters and numbers
(passphrase riddle)
--
(((??? - 3) * 1) - 5) = -3
-
1 chars before small Q
and not a
"R",
but
(((??? * 1) - 7) - 4) = -5
-
(((??? / 4) / 4) - 3) = -2.6875
and
1 chars before small Q;
small 'R' +1 letters
followed by
2 chars before small D
and
→ retype that here
Enter the correct letters and numbers from the image into the text box. This small test serves as access restriction against malicious bots. Simply reload the page if this graphic is too hard to read.
 

Note: Emails will not be visible or used in any way, and are not required. Please keep comments relevant. Any content deemed inappropriate or offensive may be edited and/or deleted.

No HTML code is allowed. Line breaks will be converted automatically. URLs will be auto-linked. Please use BBCode to format your text.