[PHP-DB] class of objects created by mysqli_result-fetch_object

2006-02-04 Thread Stefan Reimers

Hi,

I fetched some data from my MySQL database into objects. These are of 
class stdClass.
Now I wonder about the sense of having objects without methods defined. 
In fact, I cannot benefit from any of the OO advantages (namely property 
protection, controlled method calls on class properties) unless I wrap 
the properties of these instances of stdClass to a custom class, right?


Is there any way to fetch MYSQL data to a suitable class other than 
stdClass - suitable in the sense of: the custom class has all properties 
which are fetched from db.


thx
Stefan

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



[PHP-DB] screen resolution!

2006-02-04 Thread JeRRy
Hi,
   
  I have written a website in PHP using MYSQL.  But I have come accross an 
un-common problem.  Normally when I create a website it's done on a desktop PC. 
 But this time for the first time I did it on laptop meaning the screen 
resolution is different.
   
  Is there any sort of script/code I can use to create another section of my 
site in a desired screen resolution without me having to do it all manually?
   
  I know of many scripts online that I can DETERMINE visitors screen 
resolutions and recommend the correct one but don't know one that will adjust 
the website to suit that visitors screen resolution.  Am aware of scripts that 
redirect to another web page but that requires you to write the website again 
to cater for that.
   
  Is there a quicker way/solution?
   
  Thanks!
   
  J


[PHP-DB] Re: screen resolution!

2006-02-04 Thread Jan Pieper

PHP donĀ“t know how whats your resolution is. You need Javascript.

 screen.width, screen.height

Jan Pieper


Hi,
   
  I have written a website in PHP using MYSQL.  But I have come accross an un-common problem.  Normally when I create a website it's done on a desktop PC.  But this time for the first time I did it on laptop meaning the screen resolution is different.
   
  Is there any sort of script/code I can use to create another section of my site in a desired screen resolution without me having to do it all manually?
   
  I know of many scripts online that I can DETERMINE visitors screen resolutions and recommend the correct one but don't know one that will adjust the website to suit that visitors screen resolution.  Am aware of scripts that redirect to another web page but that requires you to write the website again to cater for that.
   
  Is there a quicker way/solution?
   
  Thanks!
   
  J




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



RE: [PHP-DB] screen resolution!

2006-02-04 Thread Bastien Koert


As the other poster mentioned you need JS to detect the screen widththe 
usual approach is to use js to detect the screen res and the include the 
appropriate CSS file to match the screen res.


Bastien



From: JeRRy [EMAIL PROTECTED]
To: php-db@lists.php.net
Subject: [PHP-DB] screen resolution!
Date: Sun, 5 Feb 2006 02:44:19 +1100 (EST)

Hi,

  I have written a website in PHP using MYSQL.  But I have come accross an 
un-common problem.  Normally when I create a website it's done on a desktop 
PC.  But this time for the first time I did it on laptop meaning the screen 
resolution is different.


  Is there any sort of script/code I can use to create another section of 
my site in a desired screen resolution without me having to do it all 
manually?


  I know of many scripts online that I can DETERMINE visitors screen 
resolutions and recommend the correct one but don't know one that will 
adjust the website to suit that visitors screen resolution.  Am aware of 
scripts that redirect to another web page but that requires you to write 
the website again to cater for that.


  Is there a quicker way/solution?

  Thanks!

  J


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