Hi all,
How to print document without display/open that document, Only click the button print,
document printing.
TQ
--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
The easy way (but not the recommended way) would be to serialize() the
array and then stuff it into a TEXT field for later retrival and
unseralize().
This would work if you are just storing the array for later use and
don't need to select on it's contents.
Personally, before I would go that ro
Jeroen Wasteels wrote:
Is it possible to save an array to a database? And if so, how can I display
the entire array when I retreive it from the database? If not, is there
some other way to store several data in one colomn/row?
http://us2.php.net/serialize
--
---John Holmes...
Amazon Wishlist: ww
On Tuesday 13 January 2004 10:59, Jeroen Wasteels wrote:
> Is it possible to save an array to a database? And if so, how can I display
> the entire array when I retreive it from the database? If not, is there
> some other way to store several data in one colomn/row?
serialize()
unserialize()
--
Is it possible to save an array to a database? And if so, how can I display
the entire array when I retreive it from the database? If not, is there
some other way to store several data in one colomn/row?
--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net
Hello jonah,
Monday, January 12, 2004, 9:48:35 AM, you wrote:
jm> data and process information from the data. The issue is how to
jm> access the data through the worldwide web. I want to know whether
jm> PHP can be used to interface with VB and the data accessed using a
jm> browser.
Depends enti
Hey Guys!
I am new to PHP and want to know whether it is possible to use PHP with VB6 to display
spatial data. The data is organised using a GIS software and VB is used as an
interface to access the data and process information from the data. The issue is how
to access the data through the world