Because I am a goof, and that actually was the typo as to why my image wasn't showingFractal wrote:Just a question, but is there any actual reason why you use \ for your folders instead of /?
Search found 5 matches
- Mon Feb 27, 2006 9:39 pm
- Forum: PHP - Code
- Topic: IMG not showing in FF but does in IE
- Replies: 3
- Views: 392
- Mon Feb 27, 2006 9:30 pm
- Forum: PHP - Code
- Topic: IMG not showing in FF but does in IE
- Replies: 3
- Views: 392
IMG not showing in FF but does in IE
Entire echo line: echo "<strong>Name:</strong> $name <br><strong>Address:</strong> $address $city $state, $zip<br><strong>Phone:</strong> $phone <strong>Fax:</strong> $fax<br><strong>URL:</strong> <a target=\"_blank\" href=\"$url\">$url</a><br><img border=\"0\" src...
- Thu Oct 20, 2005 1:42 pm
- Forum: PHP - Code
- Topic: mail() $message truncating
- Replies: 0
- Views: 168
mail() $message truncating
Is there a limitation to how long your message can be when using mail()? I load the body of my html formatted email into $message and then call it to loop out my emails for a newsletter. However it seems to truncate the message around 1021 characters for whatever reason. I have tried removing all th...
- Wed Jun 08, 2005 10:18 pm
- Forum: PHP - Code
- Topic: Pass ID var in URL to second page then Error
- Replies: 3
- Views: 270
Thank you Jcart that worked perfect. Sorry for being a n00b!Jcart wrote:Code: Select all
$result = mysql_query("SELECT * FROM `linkcount` WHERE `ID` = '".$_GET['URLID']."'") or die(mysql_error());
Burrito I appreciate you taking the time to help as well!
- Wed Jun 08, 2005 9:45 pm
- Forum: PHP - Code
- Topic: Pass ID var in URL to second page then Error
- Replies: 3
- Views: 270
Pass ID var in URL to second page then Error
I have two pages. The first one has links to other web sites. When the link is clicked it links to the second page with a "?URLID=#" in the url. i.e. - http://www.domain.com/secondpage.php?URLID=2 On the second page I take the URLID and look it up in a mysql db to update the clickcount fie...