Forum: PHP Dec 9th, 2004 |
| Replies: 131 Views: 44,466 I just installed the first VB forum that I own yesterday (www.mysportsforum.com) and this tutorial is DA BOMB baby!
Thanks everybody! |
Forum: PHP Jul 7th, 2004 |
| Replies: 5 Views: 2,881 Look for the "Visual Quick Start to PHP" for the easiest quick start. I found it extremely simple to catch on using that book.
You will probably grow out of it quickly, but it will give you the... |
Forum: PHP Jun 16th, 2004 |
| Replies: 11 Views: 3,091 not to be a jerk... but I am trying to help you, and I have helped you solve two programming problems since yesterday, and I see in my control panel that you gave me a negative reputation thing. ... |
Forum: PHP Jun 16th, 2004 |
| Replies: 11 Views: 3,091 If you are doing a comparison you need to use "==" instead of "="
if ($results = $usr_name)
is always true. |
Forum: PHP Jun 16th, 2004 |
| Replies: 11 Views: 3,091 I understand that Killer_Typo. PHP and MySQL both spit out error messages when you have an error. That makes debugging buggy code easier. That's why I showed you how to echo a mysql error after... |
Forum: PHP Jun 15th, 2004 |
| Replies: 11 Views: 3,091 No, that means I didn't look at it because you didn't post the errors. |
Forum: PHP Jun 15th, 2004 |
| Replies: 11 Views: 3,091 If you don't post the errors and the code we can't help. There are too may things that could possibly hose your script up. |
Forum: PHP Jun 15th, 2004 |
| Replies: 6 Views: 2,934 You also may want to check your MAX_FILE_UPLOAD size in your php.ini file. |
Forum: PHP Jun 14th, 2004 |
| Replies: 4 Views: 6,354 NP bud. While I am developing I always echo errors after every SQL statement in PHP and keep debug on in other languages. Makes it easier to know off the bat where the problems are. |
Forum: PHP Jun 14th, 2004 |
| Replies: 4 Views: 6,354 $results = mysql_query($sqlquer y); //Query the results
if(!$results){
echo(mysql_error());
} |
Forum: PHP Jun 10th, 2004 |
| Replies: 7 Views: 6,091 Accessing and sending commands to a pop account was one of the most difficult things I have done in PHP. There is an object out there that I found that did most of the hard work for me, but even... |
Forum: PHP Jun 6th, 2004 |
| Replies: 5 Views: 4,620 Don't do that. Put the flat file above the web root. I'm not sure of your hosting environment, but most linux set ups allow you to access files above the web root with your scripts.
If there is... |
Forum: PHP Jun 5th, 2004 |
| Replies: 1 Views: 3,488 You can set a cookie if your user will leave the site (probably will for a monent if paypal is being used) or you can use a session if all pages reside on your server.
Check out php.net and search... |