Jump to content

er@s

Newbie
  • Posts

    6
  • Joined

  • Last visited

er@s's Achievements

Explorer

Explorer (1/14)

0

Reputation

  1. Заработало наконец. Правдв пришлось переустановить сервер на другой диск. Может это виста со своими правами администратора? В итоге код сделал такой: $ind1 = mysql_query("SELECT * FROM `main_page`"); $ind1_array = mysql_fetch_array($ind1); echo "<table width='80%'><tr><td>\n<div class='news'>\n<h3>".$ind1_array['title']."</h3>\n<p>".$ind1_array['text']."</p>"; Всем спасибо, кто помогал мне
  2. Спасибо, помогло. Но теперь вылазиет такое сообщение: Warning: printf() [function.printf]: Too few arguments in T:\home\localhost\site\index.php on line 10 Сам код я немного изменил, но не думаю, что в этом дело: $ind1 = mysql_query("select * from main_page"); $ind1_array = mysql_fetch_array($ind1); printf ("<table width='80%'><tr><td>\n<div class='news'>\n<h3>%s</h3>\n<p>%s</p>", $ind1_array['title'], $ind1_array['text']); Как мне быть?
  3. У меня такая проблемма. Создал я работающую страницу, скопировал из нее часть кода в другую и в ней он пишет: Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in T:\home\localhost\site\index.php on line 8 Сам код такой: $ind1 = mysql_query("select * from index"); while ($ind1_array = mysql_fetch_array($ind1)) { printf ("<table width='80%'><tr><td>\n<div class='news'>\n<h3>%s</h3>\n<p>%s</p>", $ind1_array["name"], $ind1_array["text"]); } Не подскажете что делать?
  4. Помогите пожалуйста. Надо выровнить div(отмечен красным) так, чтобы он оказался вверху столбца таблицы. Код примерно такой: <table width="100%"> <tr> <td width="20%"> [color="#FF0000"]<div class='panel'> ... </div>[/color] </td> <td width="60%"> ... </td> <td width="20%"> ... </td> </tr> </table> Как я не пытался, он стоит по середине
  5. Большое спасибо. Однако у меня появились еще вопросы. Во-первых, может можно сделать из ячеек таблицы ссылки? Во-вторых, при раскрытии таблицы она остается и ее можно закрыть при повторном наведении на таблицу. А как сделать так, чтобы она сама закрывалась при ухода с нее курсора?
  6. Добрый день. У меня такая проблемма. Моя странница в IE работает нормально, но в ff работает не так как надо. Во-первых, ссылки. При шелчке на элементах таблицы ссылки в ff не работают. Во-вторых, таблица. При расскрытии элементы маленькие, хотя контуры нормальные. Вот код страницы: <html> <head> <title>Untitled Document</title> <script language='javascript'> <!-- function togglelistonea() { eTarget=idlistonea eTarget.style.display == "none" ? eTarget.style.display="block": eTarget.style.display="none" eTarget.display =="none" ? eTarget.display="block": eTarget.display="none" } function flashme(eSrc, sColor) { eSrk.style.color=sColor idlistonea.style.color="black" } //--> </script> </head> <body> <table width="523" height="379" border="1"> <tr> <td width="274" height="373">некоторая информация <table width="261" height="89" border="1" id="idList" name="idlist"> <tr> <a href="http://localhost/"><td bgcolor="#333333" onMouseOver="this.style.backgroundColor='#990000';" onMouseOut="this.style.backgroundColor='#333333'" style="cursor:hand "><div align="center" class="style1"><FONT COLOR="#ffffff">localhost</FONT></div></td></tr></a> <tr> <td bgcolor="#333333" onMouseOver="togglelistonea()"><div align="center"><FONT COLOR="#ffffff">admin</FONT></div></td> </tr> </table> <table width="256" height="63" border="1" id="idlistonea" name="idlistonea" style="display:none; onMouseout="window.event.cancelBuble="true"> <tr> <a href="http://localhost/joomla/administrator"><td bgcolor="#333333" onMouseOver="this.style.backgroundColor='#990000';" onMouseOut="this.style.backgroundColor='#333333'" style="cursor: hand;"><div align="center"><FONT COLOR="#ffffff">admin</FONT></div></td></a> </tr> <tr> <a href="http://localhost/joomla"><td bgcolor="#333333" onMouseOver="this.style.backgroundColor='#990000';" onMouseOut="this.style.backgroundColor='#333333'" style="cursor: hand;"> <div align="center"><FONT COLOR="#ffffff">mysql</FONT></div></td> </a> </tr> </table> <p> </p></td> <td width="233">некоторая информация</td> </tr> </table> </body> </html>
×
×
  • 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. See more about our Guidelines and Privacy Policy