Jump to content

Frustration with a Simple Variable... *SOLVED*


Cell0518

Recommended Posts

I am passing a variable through the url ($_get)
example:
http://www.dslr-photography.com/chk_id.php?id=3
[code]
<?php
//Setup $id
echo "ID CHECKER<br />";
$id == $_get['id'];
echo "Story ID = ".$id;
?>
[/code]

Why is this not working?  I am very frustrated with this simple, stupid problem.  ??? >:( :-[

I've tried $_GET, $_get, 'id', "id".
== is equals as in for use in if statements e.g. if (1==1) { echo ('1 is equal to 1') } what you need is just =


[code]<?php
//Setup $id
echo "ID CHECKER<br />";
$id = $_get['id'];
echo "Story ID = ".$id;
?>
[/code]

See how that goes mate :)

Regards
Liam

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.