Jessica
Staff Alumni-
Posts
8,968 -
Joined
-
Last visited
-
Days Won
41
Everything posted by Jessica
-
Post the code that sends the mail.
-
No, to the page. Or view the source and paste the HTML.
-
What the what. You're doing it wrong...
-
Can you post a link please?
-
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.
-
I assume she made a new thread for it, which was the right thing to do.
-
-
Psh inadvertant. Stalker.
-
You stop stalking me!! I am working. I'm multitasking. It's this amazing thing we women can do.
-
Post the actual URL you go to on the page that creates that output. Is this file being included somehow?
-
Hp - Determining Number Of Characters/lines Per Page
Jessica replied to Jagand's topic in Applications
Then you should generate a PDF.- 5 replies
-
- characters per line
- lines per page
- (and 2 more)
-
$cid = $_REQUEST['cid']; $cid = $_SESSION['cid']; Is your code. Is what you SAID your code is. See the difference?
-
Did you start the session using session_start? Post more of the relevant code (not the whole file please)
-
Why? How would you then call the keys? It makes no sense, and it has no benefit.
-
If the keys 1 and 2 must output 19, you CANNOT remove duplicates. Your own specs require duplicates.
-
*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.
-
Agreed. Unless you want: $YearArr = array( 19=>array(1,2), 18=>array(3,4) ); etc.
-
"echo" Syntax Error Generating Html Code With Php Bits Subed In
Jessica replied to kate_rose's topic in PHP Coding Help
You have unescaped " in your strings. Make it much simpler: echo "Hello my name is "bob""; You see the very obvious problem there, right? -
It works for that string. Do a var_dump on the string.
-
"echo" Syntax Error Generating Html Code With Php Bits Subed In
Jessica replied to kate_rose's topic in PHP Coding Help
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. -
<?php $myIntro= '<p>My Paragraph</p>\r\n<p> </p>'; $myIntro = rtrim($myIntro, '<p> </p>'); echo $myIntro;
-
Also, look into CSS rather than inline styles.
-
Hp - Determining Number Of Characters/lines Per Page
Jessica replied to Jagand's topic in Applications
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.- 5 replies
-
- characters per line
- lines per page
- (and 2 more)