Jump to content

jowdilla

Members
  • Posts

    13
  • Joined

  • Last visited

Everything posted by jowdilla

  1. Many thanks to all, after read all of your comments I did start to check every pixel in the code... I found that some pages were SET to Ocidental Europe instead of my default UTF-8. With that done my problems were gone. I even added header("Content-Type: text/html; charset=UTF-8",true); in some pages to remove the bugs in chrome and IE. Problem solved! PEACE brothers.
  2. But Im not figuring out what to apply and where, can you be me more specific? Thanks
  3. I'm using Dreamweaver CS5 right now. My main code is here: <?php mysql_connect("localhost", "root", "") or die(mysql_error()); mysql_select_db("logincarlacaessa") or die(mysql_error()); ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Tarot Online - Carla Caessa</title> <link href="estilobase.css" rel="stylesheet" type="text/css" /> </head> <body> <table width="1024" border="0" cellspacing="0" cellpadding="0" align="center"> <tr> <td colspan="3" height="97px" background="images/tarotcctemplate_CORTADO_LAYOUT_01.png"> </td> </tr> <tr> <td width="163" rowspan="3" background="images/tarotcctemplate_CORTADO_LAYOUT_02.png"> </td> <td valign="top" width="487" height="26"> <?PHP require_once "menu_principal.php" ?></td> <td width="374" rowspan="3" background="images/tarotcctemplate_CORTADO_LAYOUT_04.png"> </td> <!--COLUNA LATERAL DIREITA--> </tr> <tr><!--ROW ABAIXO DO MENU PRINCIPAL - ESPAÇO DEDICADO AO LOGIN--> </tr> <tr> <td height="339" background="images/tarotcctemplate_CORTADO_LAYOUT_05.png" valign="top"> <table width="487" border="0" cellspacing="0" cellpadding="0"> </table> <table width="487" border="0" cellspacing="0" cellpadding="0"> <tr> <td width="20"> </td> <td width="447"><?PHP require_once "registo\index.php" ?></td> <td width="20"> </td> </tr> </table> </td> </tr> <tr> <td background="images/tarotcctemplate_CORTADO_LAYOUT_06.png">março</td> <td height="515" background="images/tarotcctemplate_CORTADO_LAYOUT_06-07.png"> </td> <td background="images/tarotcctemplate_CORTADO_LAYOUT_08.png"> </td> </tr> </table> <table width="100%" border="0" cellspacing="0" cellpadding="0" bgcolor="#000000"> <tr> <td height="100"> </td> </tr> </table> </body> </html>
  4. Thanks for fast reply, but I have precisely that line in the begining of my main page, but I dont have it in my PHP scripts that Ive included in my Main page. hm, what else can I try?
  5. Hi, I'm making my website, everything is going well, but now I found something weird... some characters cant display and appear like this: � I let an image here, as we know, image is worth a thousand words, so here it goes.
  6. I used to code some in C++, php for me its very new... I would like that you explain to me some things. What you mean creating with lines instead of tables, am I doing it in the wrong way? If you were in my situation what would you change? Now, at firefox I see this:
  7. Thanks, AltarofScience, where should I apply that? I made my design organized by a table, each column and row has its own bg image. I made that without CSS, am I doing it right, is there a simple and cleaning way to do this? Thanks.
  8. Im not ejecting an entire php page, im just trying to put my menu in my main(index) page, <?PHP include "menu_principal.php" ?> .
  9. Instead of you telling me that Im in a non sense situation, why don't you tell me whats wrong and what to do differently... I think Im in the PHP HELP forum!
  10. Firstable I would like to say HELLO to the community, this is my first post here and I wish I would solve this problem that is anoying me for 2 days. So my issue is : I have my main PHP file(index) with this code: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Tarot Online - Carla Caessa</title> <style type="text/css"> <!-- body { background-image: url(images/primary_purple/diamonds.jpg); } --> </style></head> <body> <table width="1024" border="0" cellspacing="0" cellpadding="0" align="center"> <tr> <td colspan="3" height="97px" background="images/tarotcctemplate_CORTADO_LAYOUT_01.png"> </td> </tr> <tr> <td width="163" rowspan="2" background="images/tarotcctemplate_CORTADO_LAYOUT_02.png"></td> <td width="487" height="26" background="images/tarotcctemplate_CORTADO_LAYOUT_02-03.png" <?PHP include "menu_principal.php" ?> ></td> <td width="374" rowspan="2" background="images/tarotcctemplate_CORTADO_LAYOUT_04.png"></td> </tr> <tr> <td height="385" background="images/tarotcctemplate_CORTADO_LAYOUT_05.png"><table width="487" border="0" cellspacing="0" cellpadding="0"> </table></td> </tr> <tr> <td background="images/tarotcctemplate_CORTADO_LAYOUT_06.png"> </td> <td height="515" background="images/tarotcctemplate_CORTADO_LAYOUT_06-07.png"> </td> <td background="images/tarotcctemplate_CORTADO_LAYOUT_08.png"> </td> </tr> <tr> <td colspan="3" background="images/tarotcctemplate_CORTADO_LAYOUT_09.png" height="74"> </td> </tr> </table> </body> </html> So as you noticed I have a line in PHP that calls my main menu file called "menu_principal.php". I've tried several ways with space, none space, require instead include and none of them worked well. That said, with this code that I did apply above we'll check something like this: What's wrong with that? Later on, I'll show you what should it look like... like this (with the menu, of course): Ok, after you check that all I also let the code from my menu_princpal.php for you professional PHP coders check it out. Here it is: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Untitled Document</title> <style type="text/css"> <!-- .LinkCSSstyle { font-family: Tahoma, Geneva, sans-serif; font-style: normal; text-transform: uppercase; color: #FFF; } --> </style> </head> <body> <table width="487" border="0" cellspacing="0" cellpadding="0" height="26"> <tr> <td align="center">Início</td> <td align="center">Tarot Online</td> <td align="center">Consultório</td> <td align="center">F.A.Q.</td> </tr> </table> </body> </html> Just a picture of the code: I really apreciate if you guys help me on this. Many thanks in advance, Peace. Jow
×
×
  • 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.