[PHP-DB] IE6 PHP

2007-04-13 Thread elk dolk
Hi all,
 I have a bunch of thumbnail images that link to larger versions of the images 
and want to line them up in rows across the screen , using CSS I put them into 
a separate DIV. To get them to line up horizontally across the window I use CSS 
to FLOAT each DIV to the left, CSS looks like this:
 div.float {
 float: left;
 }
 and the HTML :
 div class=floatimg srcimage.jpg.../br //div
 Firefox and Netscape show the thumbnails in rows like this:
 
 [] [] [] []
 [] [] [] []
 [] [] [] []
 
 but in IE6 there is a problem , the first row is O.K. but the second ant the 
third rows are not O.K.  it looks like this:
 [] [] [] []
 [] []  
   [] []
 []
   [] [] []
 
 please comment
   
-
No need to miss a message. Get email on-the-go 
with Yahoo! Mail for Mobile. Get started.

Re: [PHP-DB] IE6 PHP

2007-04-13 Thread Chris

elk dolk wrote:

Hi all,
 I have a bunch of thumbnail images that link to larger versions of the images 
and want to line them up in rows across the screen , using CSS I put them into 
a separate DIV. To get them to line up horizontally across the window I use CSS 
to FLOAT each DIV to the left, CSS looks like this:
 div.float {
 float: left;
 }
 and the HTML :
 div class=floatimg srcimage.jpg.../br //div
 Firefox and Netscape show the thumbnails in rows like this:
 
 [] [] [] []

 [] [] [] []
 [] [] [] []
 
 but in IE6 there is a problem , the first row is O.K. but the second ant the third rows are not O.K.  it looks like this:

 [] [] [] []
 [] []  
   [] []

 []
   [] [] []
 
 please comment


Find a css list to ask, doesn't have much to do with php (and definitely 
not databases :P).


--
Postgresql  php tutorials
http://www.designmagick.com/

--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



AW: [PHP-DB] IE6 PHP

2007-04-13 Thread Mario Brandt
After each row

div class=cleaner/div

.cleaner {
clear:both;
height:0.625em;
font-size:1px;
border:none;
margin:0; padding:0;
background:transparent;
}   

:-P

-Ursprüngliche Nachricht-
Von: Chris [mailto:[EMAIL PROTECTED]
Gesendet: Freitag, 13. April 2007 09:02
An: elk dolk
Cc: [EMAIL PROTECTED]
Betreff: Re: [PHP-DB] IE6  PHP


elk dolk wrote:
 Hi all,
  I have a bunch of thumbnail images that link to larger versions of the
images and want to line them up in rows across the screen , using CSS I put
them into a separate DIV. To get them to line up horizontally across the
window I use CSS to FLOAT each DIV to the left, CSS looks like this:
  div.float {
  float: left;
  }
  and the HTML :
  div class=floatimg srcimage.jpg.../br //div
  Firefox and Netscape show the thumbnails in rows like this:
  
  [] [] [] []
  [] [] [] []
  [] [] [] []
  
  but in IE6 there is a problem , the first row is O.K. but the second ant
the third rows are not O.K.  it looks like this:
  [] [] [] []
  [] []  
[] []
  []
[] [] []
  
  please comment

Find a css list to ask, doesn't have much to do with php (and definitely 
not databases :P).

-- 
Postgresql  php tutorials
http://www.designmagick.com/

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-DB] ANN: Free PHP Generators released

2007-04-13 Thread SQL Maestro Group

Hi all,

SQL Maestro Group released a set of freeware PHP Generators for MySQL, 
PostgreSQL, SQLite, Oracle, SQL Server, Firebird and MaxDB database servers. 
These front-ends allow you to generate high-quality PHP scripts for the 
selected tables, views and queries for the further working with these 
objects through the web.


http://www.sqlmaestro.com/news/company/3764/

Key features:

- Data management: adding, editing and deleting records
- Customization of the HTML appearance
- Filtering and sorting abilities
- Data protection with a lot of security settings
- Lookup options for master-detail relations
- Integrated script navigation
- Ability to create multilingual web apps.

Sincerely yours,
SQL Maestro Group
http://www.sqlmaestro.com

--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-DB] ORDERing two UNION queries: Non-Subquery UNION Execution

2007-04-13 Thread ioannes

http://dev.mysql.com/doc/internals/en/select-union.html

Does anyone know what this means?  Can it be implemented in the flow of 
php code without explicitly creating temp tables in the database?


My query is like:

$query = 
   (SELECT
   Table.field, [other fields]
   FROM Table [other JOINs]
   ORDER BY Table.field
   )
   UNION
   (SELECT
   Table2.field, [other fields]
   FROM Table2 [other JOINs]
   ORDER BY Table2.field
   )
   ;

and I want the ORDER to apply to the whole UNIONed result.

John

--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-DB] auto_increment

2007-04-13 Thread Ron Piggott
Does anyone see anything wrong with the $query syntax?  Ron

mysql_connect(localhost,$username,$password);
@mysql_select_db($database) or die( Unable to select database);
$query=ALTER TABLE sessions auto_increment = '1';
mysql_query($query);
mysql_close();