Jump to content

george

Members
  • Posts

    377
  • Joined

  • Last visited

Everything posted by george

  1. Is there any way to get rid of the boxes around text input type? I have my form in a table, and would prefer not have all thoes little boxes in each cell. Also, I have added style to a td tag, but it renders style to every table on the page, rather than just the one I want it to. I know if I put a style statement into every td tag in the table I want the style for, it will render as I want. But I have 180 cells. There must be a better way. Any ideas out there? TIA- George
  2. Thank you Some Guy! I was using the session array initially, and then started reading about how to solve my non propagation of state, and I think I got some older PHP docs which took me down a road of confusion. My problem remained - because I didn't have a session start in one of my includes. I spent all morning on this. Maybe I need to go back to stocking shelves at the grocery store. Thanks again. - George
  3. Hi SomeGuyI am having a simular problem. I can not seem to maintain state. Session Auto Start is set to on, so I get an error when I try and start a session with session_start() "can not reload headders". But when I use the following test, if (!session_is_registered('views')) { $views = 1;} else { $views++;} which is in a header file which gets called repeatedly. But every time it is called, views = 1. I suspect it is creating a new session each time. By PC cookies work, and I can see the sessions on the PHP server. Any ideas? TIA - George
  4. The "thin" and the "solid" and the color code all work just fine. The browser understands them, and gives me what I want when I use them in a style statement within the TD tag itself. BUt I want the same thing for all cells the page, and there are 180 of them. Thanks though. I sure do appreciate your reply.Thanks Jish. Works like a charm. But, now I have another problem. I have one css for the site. The css is linked to in the header.inc file, which is called for each page, but my style commands do not make it to all the pages. I am using PHP and server side includes for each page. So why won't my css go to all the pages? Someday I will learn all this! - George
  5. When I insert a style="border-right: thin solid #006699;" into each TD tag, I get what I want. But how can I get the same using CSS? I tried adding style to the TD tag using td { border-right: thin solid #006699; } But nothing happened. Help
×
×
  • Create New...