Jump to content

Jessica

Staff Alumni
  • Posts

    8,968
  • Joined

  • Last visited

  • Days Won

    41

Everything posted by Jessica

  1. You're using the HEREdoc wrong.
  2. Yes, this is what tables are FOR. TABULAR data. Tables. Please. For the love of pete.
  3. I was asking which client, I know it was the email client...hence asking if it was gmail or their client.
  4. What is up with this weird quote thing in my email? The person I emailed replied and it says this instead of the usual "Jessica wrote" Is this a new thing in gmail or their email program? [attachment deleted by admin]
  5. Well it does now...sort of. I mean, they changed it from Personal Home Pages or some crap like that and now it's a recursive acronym which really doesn't make sense to most people.
  6. I sent him a PM, no idea why he can't reply - my inbox is completely empty.
  7. define the variables on another config.php file. Then include that when you want the variables, and itempage.php when you want the output. Another option is to make all of the output part of a function, and only call the function when you want it to print.
  8. make it a function and use a for loop.
  9. Ah, I didn't even read your SQL myself. Sorry Well glad you caught it!
  10. It sounds like $EventDate is empty. What does it say if you do: while ($row = mysql_fetch_array($result)) { print_r($row); }
  11. It depends on what you're trying to do.The first one in each set is a bit more clear, but it doesn't really matter.
  12. use isset(). Not checking is poor programming practice.
  13. Because it's not set. You need: $extra = $_GET['extra']; Also, don't put quotes around a variable, you're making PHP work harder. print $extra;
  14. Well thats not what you said before. I don't see where you print that variable, but you need to print it only if it's already defined.
  15. You can change error reporting levels at runtime using ini_set or error_reporting. Your host is not going to make changes to the php.ini file.
  16. This is an HTML/CSS question, wrong forum.
×
×
  • 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.