Search results

  1. bidzey75

    CSS Float problem

    that's another thing that is not an issue with tables because tables existed along with the first browser and all browsers were compliant except for very minor details such like borders, where CSS you need to include different versions to accommodate every browser if your running a serious or...
  2. bidzey75

    Table-based layout: Threat or Menace?

    sorry misson, didn't mean to hit a nerve, you must of spent alot of time on this. I'm honored! Your entitled to your opinions and I respect them. :smile: As long as your happy... that's what I always say!
  3. bidzey75

    Database error

    I think using a class for a MySql connection is an overkill, but since we cant see all of it maybe it does more. This is not all of the code, is it? The code here is declaring the class (with missing parts). If you want to use it you have to initiate it into a variable. like this: class Foo...
  4. bidzey75

    [PHP] Uploading files

    always check the error log files it will tell you what's going on. If the same script works on another server my best guess is it's a permission issue
  5. bidzey75

    CSS Float problem

    The reasons given are full of CSS evangelism. The biggest companies like Microsoft still use tables in some of their products like Sharepoint 2010 for one example. Gee... I wonder why? Understand the difference between dressing up your page, wich CSS is awsome, and layout where tables if used...
  6. bidzey75

    Index of /

    i didn't want to start a new thread because I don't really need support as such, but I just seen in this forum an example of the 0 tolerance and was wondering... if someone has a forum on their site of their own and someone posts something that is illegal, will the owner of the forum get...
  7. bidzey75

    wcfg.php error. site problems & redirects to an unrelated site

    to be specific, those are 3 "warnings" and not "errors" there is a difference. You could turn off warnings in that page and that would go away using error_reporting(); but if that file is needed to run your site that would not be a solution. more info on that here: anyways... what is happening...
  8. bidzey75

    is php mail() function working?

    if I remember correctly PHPBB was not sending the emails to Hotmail until I specified the SMTP parameters. But I didn't test it on my gmail account. If your hard-up for it I guess someone could always use the PEAR email class. Then you can specify the SMTP you want to use right in your php script.
  9. bidzey75

    is php mail() function working?

    I'm using hotmail for my account, it's seems like it takes a few more minutes to receive the email then it goes into the junk box, once you tell it it's not junk it seems to work better, but it does work with Hotmail. Mind you I got my forum (phpbb) configured with the SMTP parameters that was...
  10. bidzey75

    Index of /

    I know you can override configurations with an htacces file, but why have it at 100 places when you can do it once for everybody, it's more secure to have it by default, less communication traveling to the server less work for the server. It was my suggestion to have it as a default setting.
  11. bidzey75

    Index of /

    I noticed that when the default index file is not in a folder the server shows the content of that folder. My suggestion is that the server should give a 403 page when the default page (index.html, index.htm, index.php, default.php etc...) is not present in the folder. I know in apache this is...
  12. bidzey75

    CSS Float problem

    I never did understand why people left tables for layout... :confused: but anyways, if it's not an issue and you don't care about the code as long as it works, use tables for your 3 X 2 cell layout. If you must use CSS for layout... make sure you specify the width, height (might be tricky)...
  13. bidzey75

    is php mail() function working?

    is this literally the code, because "YOUREMAIL" is not defined anywhere. Perhaps your just hiding the email for posting purposes? Also if you use $_REQUEST you have no guarantee that the data came from the post data, which leads to security holes in your script. Use $_POST to grantee that's not...
  14. bidzey75

    Hello, I'm new

    Hello X10 and community :smile: I openned up an account searching for a decent free hosting place for the school board I work for. I'm the Web programmer for this school board. Some teachers teach students the basic of html and how to create Websites but don't have the funds or not budgeted...
Top