Jump to content

Jessica

Staff Alumni
  • Posts

    8,968
  • Joined

  • Last visited

  • Days Won

    41

Everything posted by Jessica

  1. Post the code that sends the mail.
  2. What the what. You're doing it wrong...
  3. You can set each td to have a width of 50%. However if this is not tabular data, you should be using divs and CSS to format it. And fix your HTML. You never even closed the table tag, and you need to quote your attributes.
  4. I assume she made a new thread for it, which was the right thing to do.
  5. You stop stalking me!! I am working. I'm multitasking. It's this amazing thing we women can do.
  6. Post the actual URL you go to on the page that creates that output. Is this file being included somehow?
  7. $cid = $_REQUEST['cid']; $cid = $_SESSION['cid']; Is your code. Is what you SAID your code is. See the difference?
  8. Did you start the session using session_start? Post more of the relevant code (not the whole file please)
  9. Why? How would you then call the keys? It makes no sense, and it has no benefit.
  10. If the keys 1 and 2 must output 19, you CANNOT remove duplicates. Your own specs require duplicates.
  11. *eyeroll*. Do a var_dump and post the contents of it. Var_dump is not to remove strings. The biggest problem is that you apparently don't see a difference between "<td><p>My Paragraph </p><p> </p></td>" AND "<p>My Paragraph</p>\r\n<p> </p>" Which IS the real string you're working with? God.
  12. Agreed. Unless you want: $YearArr = array( 19=>array(1,2), 18=>array(3,4) ); etc.
  13. You have unescaped " in your strings. Make it much simpler: echo "Hello my name is "bob""; You see the very obvious problem there, right?
  14. It works for that string. Do a var_dump on the string.
  15. http://us2.php.net/manual/en/language.types.string.php http://us2.php.net/manual/en/language.types.string.php#language.types.string.syntax.single http://us2.php.net/manual/en/language.types.string.php#language.types.string.syntax.single http://us2.php.net/manual/en/language.types.string.php#language.types.string.parsing http://php.net/manual/en/language.operators.string.php You have some serious issues with your strings, and need to learn how to escape and concatenate strings.
  16. <?php $myIntro= '<p>My Paragraph</p>\r\n<p> </p>'; $myIntro = rtrim($myIntro, '<p> </p>'); echo $myIntro;
  17. Also, look into CSS rather than inline styles.
  18. There aren't really pages in the web in the same sense as print. Are you making a PDF? I don't understand what you're trying to do.
×
×
  • 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.