Jump to content

Mchl

Staff Alumni
  • Posts

    8,466
  • Joined

  • Last visited

Everything posted by Mchl

  1. These are two columns, not two rows. That's where the confusion came from. I'd go somewhere like this: html_table_header(); html_begin_table_row(); i = 0; while($query = mysql_fetch_array($result)) { html_company_data(); i++; if ((i % 2) == 0) { html_end_table_row(); html_begin_table_row(); } } html_end_table_row(); html_end_table();
  2. Set up a backup site/database separated from production one, and let the admin girl try do same thing on it.
  3. I've migrated to NetBeans from Notepad++ (having tested some others along the way). I've started with NetBeans PHP EA, but the real fun started, with NetBeans 6.5M1 release. Now I'm working on nightly versions, but they're pretty much stable. I've never lost any work due to an error.
  4. I use ext.js, though it seems to be slow when large tables have to be displayed.
  5. I do. And I've already solved the problem by editing c:\Windows\System32\drivers\etc\hosts file. There was a line ::1 localhost Which shouldn't be there apparently. Don't know how it got there, but removing it restores localost functionality.
  6. I have a similar problem. Out of sudden localhost ceased to work (used to work with no problems). Luckily http://127.0.0.1 takes me right to WAMP homepage.
×
×
  • 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.