Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
Link in PHP
Name: Roccer Date: March 21, 2004 at 16:22:33 Pacific OS: xp CPU/Ram: 2500/512
Comment:
I am attempting to get something like this:
$url = "a href=" $link "imdb/a";
to work ( only I can't include the < and >s here). It seems that if I put spaces on the outside of the variable, it doesn't work, but with no spaces, it doesn't recognize the variable therein. Is there a coding or tag I can use to get this to work? $url will eventually be written to a text file. Any help would be great.
Summary: Here's a simple hit counter in PHP: <?php //Path to counter file $file = "count.dat"; //Get number of hits at the moment $counter = file_get_contents($file); //Add one to this number $counter++; //...
Summary: DrS- No...If going to the URL places a cookie on the user's computer, then the PHP way I mentioned won't work. This is because the server is the one making the request, and the shopping cart server d...