Does anyone have any experience in working with CDO objects in PHP?
Ron
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
php-windows Digest 30 Jul 2002 14:09:55 - Issue 1265
Topics (messages 15005 through 15010):
End session
15005 by: Kit Kerbel
15006 by: Peter
15009 by: Rich Gray
cant store checkbox vale . ?
15007 by: toby z
15008 by: Peter
Looking for some h
For those who kindly replied to my web-mail (which is not working right now)
here is the code requested.
After checking the submit variable is set we do this:
$the_data = add_microsoft_escapes(fread(fopen($data_blob,"rb"),
filesize($data_blob)));
$data_blob always reports "none"
The form enc
Hello,
On 07/30/2002 11:09 AM, R.S. Herhuth wrote:
> Does anyone have any experience in working with CDO objects in PHP?
For sending e-mail?
--
Regards,
Manuel Lemos
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Why would you need too???
Try the SMTP routines in PHP-PEAR, they work very good, and are a heck of alot
easier to use.
--
Scott Carr
OpenOffice.org
Documentation Maintainer
http://documentation.openoffice.org/
Quoting Manuel Lemos <[EMAIL PROTECTED]>:
> Hello,
>
> On 07/30/2002 11:09 AM, R.
Ok I have a hoster for my site that has it where I can use phpmyadmin to
create a db. Is this a solid way to make a db? I am trying to do an online
db for resumes and searching for employers. I heard several different things
about this, that it is hard to do and not stable. I have tried to start o
Ok
usually the hoster gives you access to create certain numbers of DB, usually
it's only one DB but unlimited Tables
With phpMyAdmin isn't hard at all, in fact it's pretty simple, because it's
a web page
Xytras
- Original Message -
From: "Viper1" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTE
hi,
hv been using phpMyAdmin for quite sometime now.. never had any kind of problems... If
they hv the MySQL running fine and no one messes with the the admin files, its one of
the best MySQL frontends i hv used...
gud luck,
sands
-Original Message-
From: Viper1 [mailto:[EMAIL PROTEC
phpMyAdmin is an easy to use, web based administration tool for MySQL. I use
it religiously and would highly recommend it for beginner to advanced level.
It lets you create db's, tables and work with data etc. What I really liked
at the beginning was how it shows you the sql statements each time y
I'm trying to run a simple script that pings and address and outputs the
results using the system() function. The script runs without any errors but
there is no output. In searching the PHP site I found references to a bug
back in 2000 and conflicting answers about whether or not it works in the
Well, as a starting point, for Outlook, look at COM,
i've used it to control Excel in the past.
As for credit checking agencies, i have no idea what type of
interface you're dealing with, so i can't really suggest anything.
good luck, though... sounds like a fun project :)
--
Scott Hurring
Syst
look at your quotes... you have a " inside of your echo statement,
which royally messes up what you'd expect echo to output.
and from a style POV, you might want to put "{}" around your vars,
for example "more{$i}.php". it will make your vars stick out a bit
more and prevent accidental mis-inter
Is there a quick way to add all of the vars in the $_POST[] array to the
$HTTP_SESSION_VARS[]?
I suppose a loop would do the trick.
Ron
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
> Is there a quick way to add all of the vars in the $_POST[] array to
> the $HTTP_SESSION_VARS[]?
> I suppose a loop would do the trick.
array_merge() might work, too.
Chris
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
(untested, since i don't use PHP's native sessions -- i wrote my own
wrapper) but this should work:
$HTTP_SESSION_VARS['post'] = $_POST;
or
$HTTP_SESSION_VARS['request'] = $_REQUEST;
if you're trying to get all the POST vars as "first-level" keys of
$HTTP_SESSION_VARS, it doesn't seem like the b
Is there a command in PHP that can identify what datatype a variable
represents? Specifically I want to know if the variable is an Array.
Thanks
Ron
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
is_array
On Tue, 30 Jul 2002, R.S. Herhuth wrote:
>
> Is there a command in PHP that can identify what datatype a variable
> represents? Specifically I want to know if the variable is an Array.
>
> Thanks
> Ron
>
> --
> PHP Windows Mailing List (http://www.php.net/)
> To unsubscribe, visit: htt
And more generally,
http://www.php.net/manual/en/function.gettype.php
--
Scott Hurring
Systems Programmer
EAC Corporation
scott (*) eac.com
--
"Rasmus Lerdorf" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> is_array
>
> On Tue, 30 Jul 2002, R.S. Herhuth wrote:
In my local network i use MySQL-Front as a gui to create and test
stuff... It is like SQL Server enterprise manager (ie. a gui application
that lets you do most of the stuff with the database server) and has
user management integrated.
There are nice things that i like in MySQL-Front, like des
hi all
A small bit of php code below will pull an image from a database. My problem
is if the image is large (300 x 200) then it does not get displayed in IE.
smaller images do. It also works properly in Opera, and nutscrape for all
sizes. Any thoughts ?
==8<=
What field type are you using to store the image?
--
Scott Carr
OpenOffice.org
Documentation Maintainer
http://documentation.openoffice.org/
Quoting David Elliott <[EMAIL PROTECTED]>:
> hi all
>
> A small bit of php code below will pull an image from a database. My problem
> is if the image i
Hi Scott
On 30 July 2002 at 15:10:50 -0500 (which was 21:10 where I live) Scott Carr
emanated these words of wisdom
> What field type are you using to store the image?
DataType of image (on MSSQL 2000). As I said it works for Opera & Nutscrape,
the image can also be pulled out properly by Cryst
Sorry, I read it, just didn't register before I wrote the email. ;-)
In that case, just use Mozilla or Opera. ;-) jk...
Joking aside:
What version of IE? Can you send an image file directly from your file system
to IE and have the image rendered properly? I.E. Have an image file on the c
I think that IE chokes when you don't give it more header information. You
may have to give it a Content-Disposition: "filename.png" as well in the
header command.
http://www.php.net/manual/en/function.header.php
Good luck.
-Dash
p.s. stupid IE
-Original Message-
From: Scott Carr [mai
Oops. It looks like it has to be "inline". See this comment on PHP.net:
[EMAIL PROTECTED]
23-May-2002 05:34
For inline images (JPEG for example):
header('Content-Type: image/jpeg');
header('Content-Disposition: inline; filename=file.jpg);
For attachments (Adobe PDF for example):
header('Conte
Salutation Scott
On 30 July 2002 at 15:38:53 -0500 (which was 21:38 where I live) Scott Carr
rearranged electrons to get
> What version of IE?
5, 5.5, 6,
> Can you send an image file directly from your file system to IE and have
> the image rendered properly? I.E. Have an image file on the c d
Hi Dash
On 30 July 2002 at 13:42:51 -0700 (which was 21:42 where I live) Dash
McElroy wrote
< ... >
> header('Content-Disposition: inline; filename=file.jpg);
does not make any difference.
> header('Content-Disposition: attachment; filename=file.pdf);
does not make any difference.
< ... >
Fellow PHPers,
We've been working on various dynamic PDF generation things and now, we want to take
things step further and place form fields in the PDF dynamically. Does anyone know if
we can actually do this? I know that once a PDF is created with form fields (such as
with Acrobat), we can p
> -Original Message-
> From: Kevin Stone [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, 31 July 2002 4:01 AM
> To: [EMAIL PROTECTED]
> Subject: [PHP-WIN] Does System() work?
>
>
> I'm trying to run a simple script that pings and address and outputs the
> results using the system() functio
Eh?? Well first off I wouldn't be using php to do it... I'd use a language
such as C++ or VB to do it, given you're probably wanting to communicate
with a serial/parallel/usb port to drive the reader and extract the
(probably) binary data from a card swipe, I don't know how well (if at all)
PHP w
Jay Blanchard wrote:
> Howdy all!
>
> Just wanted to remind everyone that sign-up for the PHP Meetup is still in
> progress at http://php.meetup.com . At latest count there are 289 folks
> signed up world-wide with the top 10 cities being;
>
> Washington DC (9 members)
> Toronto (9 members)
> Le
Anybody point me in the direction of a good tutorial or book on installing
Linux on a Win2k machine as a dual boot system.
Thanks in advance,
Sean M. Mayhew
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
php-windows Digest 31 Jul 2002 02:22:50 - Issue 1266
Topics (messages 15011 through 15040):
Re: input type=file
15011 by: Lorne T
Re: Looking for some help with using CDO with PHP
15012 by: Manuel Lemos
15013 by: Scott Carr
Re: PhpMyadmin?
15014 by: Viper1
Yup - HOWTO's for Linux can be found at
http://www.tldp.org/HOWTO/HOWTO-INDEX/howtos.html
HTH,
Mikey
> -Original Message-
> From: Sean M. Mayhew [mailto:[EMAIL PROTECTED]]
> Sent: 31 July 2002 03:23
> To: [EMAIL PROTECTED]
> Subject: [PHP-WIN] WIN2K Linux Dual Boot Question
>
>
> Anybo
34 matches
Mail list logo