Re: [PHP] Re: php and print

2004-10-12 Thread Jason Wong
On Wednesday 13 October 2004 03:57, Harlequin wrote: > I'm also using Hypertext Mark-up Language and Hypertext Pre-processor but > hey - who cares about the TLAs...? Java and Javascript are completely different things. You would be fooling yourself and making a fool of yourself if you think other

Re: [PHP] Re: php and print

2004-10-12 Thread Harlequin
I'm also using Hypertext Mark-up Language and Hypertext Pre-processor but hey - who cares about the TLAs...? -- - Michael Mason Arras People www.arraspeople.co.uk - "Raditha Dissanayake" <[EMAIL PROTECTED]> wrote in message news:[EMAIL

RE: [PHP] Re: php and print

2004-10-11 Thread Steve Murphy
Why not just use CSS? http://www.alistapart.com/articles/goingtoprint/ Steve -Original Message- From: raditha dissanayake [mailto:[EMAIL PROTECTED] Sent: Monday, October 11, 2004 12:23 PM Cc: [EMAIL PROTECTED] Subject: Re: [PHP] Re: php and print Harlequin wrote: >Bruno > >

Re: [PHP] Re: php and print

2004-10-11 Thread raditha dissanayake
Harlequin wrote: Bruno I'm still rather new to PHP so I use client side Java: you are not using java you are using javascript. [CODE] Click Here To Print This Page: [/CODE] That may be os use to you... -- Raditha Dissanayake. ---

[PHP] Re: php and print

2004-10-10 Thread Harlequin
Bruno I'm still rather new to PHP so I use client side Java: [CODE] Click Here To Print This Page: [/CODE] That may be os use to you... -- - Michael Mason Arras People www.arraspeople.co.uk - "Bruno Santos" <[EMAIL PROTECTED]> wrote

Re: [PHP] php and print

2004-10-10 Thread Greg Donald
On Sun, 10 Oct 2004 20:17:43 +0100, Bruno Santos <[EMAIL PROTECTED]> wrote: > Is possible to php to send information to the printer, or just print the > page i want in the browser > and is the user who press the print button ?? > does php have any printing functions ?? Sure, echo(), print(), sprin

Re: [PHP] PHP and FORM

2004-10-09 Thread Greg Donald
On Sat, 9 Oct 2004 08:41:38 -0400, php mysql <[EMAIL PROTECTED]> wrote: > I'm writing form using PHP and HTML. The form is submited only if user > clicks on submit button. However, it's not possible to submit form > when I press "enter". Is it possible to sub

[PHP] PHP and FORM

2004-10-09 Thread php mysql
I'm writing form using PHP and HTML. The form is submited only if user clicks on submit button. However, it's not possible to submit form when I press "enter". Is it possible to submit form pressing on enter? If so how? TH -- PHP General Mailing List (http://www.php.net/) T

[PHP] PHP and Lotus Notes

2004-10-07 Thread Terence
Hi List, I googled a bit but didnt get much. Are there tools other than the ones on the PHP website (which are EXPERIMENTAL) that can be used to access the Lotus notes framework, such as databases / tables / data from PHP. Any tips out there for integration issues. Our company is looking at bri

Re: [PHP] Images in PHP and MySQL

2004-10-06 Thread Gary Hotko
No problem Ed thanks... Actually I was supprised to see this conversation (thread) come back into my GMAIL inbox On Wed, 6 Oct 2004 15:57:12 -0700, Ed Lazor <[EMAIL PROTECTED]> wrote: > > On Friday 01 October 2004 05:52, Ed Lazor wrote: > > > Images take up more space when stored in the db,

RE: [PHP] Images in PHP and MySQL

2004-10-06 Thread Ed Lazor
> On Friday 01 October 2004 05:52, Ed Lazor wrote: > > Images take up more space when stored in the db, because you're storing > raw > > binary data. Gif and jpeg are compression methods that convert binary > data > > into something smaller that can be stored in a file. > > ?? > > If you store a

Re: [PHP] Images in PHP and MySQL

2004-09-30 Thread Jason Wong
On Friday 01 October 2004 05:52, Ed Lazor wrote: > Images take up more space when stored in the db, because you're storing raw > binary data. Gif and jpeg are compression methods that convert binary data > into something smaller that can be stored in a file. ?? If you store a jpeg file into a da

RE: [PHP] Images in PHP and MySQL

2004-09-30 Thread Ed Lazor
Images take up more space when stored in the db, because you're storing raw binary data. Gif and jpeg are compression methods that convert binary data into something smaller that can be stored in a file. The recent tests I did took 270megs of images and stored them into 180megs of jpg files. -Ed

Re: [PHP] Images in PHP and MySQL

2004-09-30 Thread Jasper Howard
I'm not any kind of expert on this, but you just read the file byte for byte, dont you? So it should be the same amount of data. On Thu, 30 Sep 2004 15:51:28 -0400, GH <[EMAIL PROTECTED]> wrote: > HEre is a question that I have been wondering about: > > - Does the image file use more space in

RE: [PHP] Images in PHP and MySQL

2004-09-30 Thread Jay Blanchard
[snip] HEre is a question that I have been wondering about: - Does the image file use more space in the db or as a file itself (Do Not count the extra data that one would store in the db along with the image... ie. ID number) [/snip] While better asked on a SQL list, I'll give you an answer fr

Re: [PHP] Images in PHP and MySQL

2004-09-30 Thread GH
HEre is a question that I have been wondering about: - Does the image file use more space in the db or as a file itself (Do Not count the extra data that one would store in the db along with the image... ie. ID number) Thanks On Thu, 30 Sep 2004 09:55:30 -0700, Jasper Howard <[EMAIL PROTECTE

Re: [PHP] Images in PHP and MySQL

2004-09-30 Thread Jasper Howard
If you're uploading a file then you can make a script that reads the temp file into the database (otherwise you need to muck around with image functions and I'm not the one to ask about that), something like: $image = mysql_escape_string(fread(fopen($_FILES['file']['tmp_name'], "r"), filesize($_FI

Re: [PHP] Images in PHP and MySQL

2004-09-27 Thread Jim Grill
> 1) there is no need to fiddle with directory permissions to write images. > 2) if the content is sensitive you have the added security of the database > password (and the fact that the database is ususally not directly > accessible). > 3) a mysqldump gives a backup of all images along with other

Re: [PHP] Images in PHP and MySQL

2004-09-27 Thread GH
com/columns/florian19991014.php3 > > HTH > > Graham > > -Original Message- > From: GH [mailto:[EMAIL PROTECTED] > Sent: 27 September 2004 23:19 > To: php-general > Subject: [PHP] Images in PHP and MySQL > > I was wondering how to get images into and o

RE: [PHP] Images in PHP and MySQL

2004-09-27 Thread Graham Cossey
.php3 HTH Graham -Original Message- From: GH [mailto:[EMAIL PROTECTED] Sent: 27 September 2004 23:19 To: php-general Subject: [PHP] Images in PHP and MySQL I was wondering how to get images into and out of a Mysql database with in php... I do not have anything in my book... but was to

Re: [PHP] Images in PHP and MySQL

2004-09-27 Thread Daniel Watrous
arily for performance reasons. - Original Message - From: "GH" <[EMAIL PROTECTED]> To: "Daniel Watrous" <[EMAIL PROTECTED]> Cc: "GH" <[EMAIL PROTECTED]> Sent: Monday, September 27, 2004 4:31 PM Subject: Re: [PHP] Images in PHP and MySQL Do

[PHP] Images in PHP and MySQL

2004-09-27 Thread GH
I was wondering how to get images into and out of a Mysql database with in php... I do not have anything in my book... but was told it was possible. I have PHP 4.3.4 and mysql 4.0.18 Thanks -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] menu mouseover using php and javascript

2004-09-22 Thread Marek Kilimajer
web_singer wrote: I am using an array to create a menu and the code to change an image on mouseover. I would also like to change some text on mouseover. While i can do it using a swtich in javascript it requires that I hard code all the different options in. My whole reason for using the php in t

Re: [PHP] menu mouseover using php and javascript

2004-09-22 Thread John Nichel
web_singer wrote: Thanks for the response, I am very new to using PHP (really need a newbies section LOL) and while I can see how a multi-dimensional array would have been better than using two I am not sure how I would get my code to read that text in the mouseover. I can read the two arrays but

Re: [PHP] menu mouseover using php and javascript

2004-09-22 Thread web_singer
"John Nichel" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > web_singer wrote: > > I am using an array to create a menu and the code to change an image on > > mouseover. > > I would also like to change some text on mouseover. While i can do it using > > a swtich in javascript it re

Re: [PHP] menu mouseover using php and javascript

2004-09-22 Thread John Nichel
web_singer wrote: I am using an array to create a menu and the code to change an image on mouseover. I would also like to change some text on mouseover. While i can do it using a swtich in javascript it requires that I hard code all the different options in. My whole reason for using the php in t

RE: [PHP] menu mouseover using php and javascript

2004-09-22 Thread Jay Blanchard
[snip] Does anyone have an idea how I can get the text portion to also use my variable? [/snip] Output the javascript with PHP -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP and extern link

2004-09-19 Thread Marek Kilimajer
Martin Justra wrote: Hi, Did you want to a) redirect the user to https://www.domain.com/... or b) display the contents of https://www.domain.com/...? I want to redirect the user. But as soon as I try with fopen (https://) I get the following error: Warning: fopen(https://tto.deutschepost.de

Re: [PHP] PHP and extern link

2004-09-19 Thread Jason Wong
On Sunday 19 September 2004 18:02, Martin Justra wrote: > yes that works. But the problem is that I don't want that the one who opens > the site can see the whole link in the navigation line of the browser > (where you type your adress in). > > In your solution I get the whole link If you want to

Re: [PHP] PHP and extern link

2004-09-19 Thread Andrew Kreps
On Sun, 19 Sep 2004 01:07:25 +0200, Martin Justra <[EMAIL PROTECTED]> wrote: > Hello, > > I want to write a script which does the following: > > You enter http://www.test.com/test.php?number=123456 > > and the script shows the site > https://www.domain.com/direct_access.do?usert=test&password=te

Re: [PHP] PHP and extern link

2004-09-19 Thread Martin Justra
Hello Robert, yes that works. But the problem is that I don't want that the one who opens the site can see the whole link in the navigation line of the browser (where you type your adress in). In your solution I get the whole link Martin -- PHP General Mailing List (http://www.php.net/) To

Re: [PHP] PHP and extern link

2004-09-19 Thread Robby Russell
On Sun, 2004-09-19 at 02:29, Martin Justra wrote: > Hi, > > Did you want to > > > > a) redirect the user to https://www.domain.com/... > > > > or > > > > b) display the contents of https://www.domain.com/...? > > > I want to redirect the user. But as soon as I try with fopen (https://) > I get

Re: [PHP] PHP and extern link

2004-09-19 Thread Martin Justra
Hi, > Did you want to > > a) redirect the user to https://www.domain.com/... > > or > > b) display the contents of https://www.domain.com/...? > I want to redirect the user. But as soon as I try with fopen (https://) I get the following error: Warning: fopen(https://tto.deutschepost.de/next

Re: [PHP] PHP and extern link

2004-09-18 Thread Jason Wong
On Sunday 19 September 2004 07:07, Martin Justra wrote: > I want to write a script which does the following: > > You enter http://www.test.com/test.php?number=123456 > > and the script shows the site > https://www.domain.com/direct_access.do?usert=test&password=test&number=123 >456 Did you want t

[PHP] PHP and extern link

2004-09-18 Thread Martin Justra
Hello, I want to write a script which does the following: You enter http://www.test.com/test.php?number=123456 and the script shows the site https://www.domain.com/direct_access.do?usert=test&password=test&number=123456 It's important that the password is not shown to everyone. I tried fopen()

RE: [PHP] Re: MSSQL, PHP and Linux

2004-09-14 Thread Dan Joseph
Hi, > Nope, not paying for it. I think it is just a trial...he has tried > for a few weeks to get the freetds library to work with redhat 9 with > no luck so I think he just now wants to try fedora for the heck of it. > > We have no idea as to why it won't work with Red Hat 9...must me > missing

RE: [PHP] perl regex in php and multiple escape rules

2004-09-14 Thread Ford, Mike
On 14 September 2004 10:19, Christophe Chisogne wrote: > I'm looking for more detailed information about preg_replace > (and other perl regex functions) than in the php manual, > specifically about different escape rules interaction. [] > The 'pattern' argument is a string, but how does php

Re: [PHP] perl regex in php and multiple escape rules

2004-09-14 Thread Wouter van Vliet
On Tue, 14 Sep 2004 11:18:33 +0200, Christophe Chisogne <[EMAIL PROTECTED]> wrote: > > In a word: > > I'm looking for more detailed information about preg_replace > (and other perl regex functions) than in the php manual, > specifically about different escape rules interaction. > > In more words

[PHP] perl regex in php and multiple escape rules

2004-09-14 Thread Christophe Chisogne
In a word: I'm looking for more detailed information about preg_replace (and other perl regex functions) than in the php manual, specifically about different escape rules interaction. In more words: PHP has it's own way of escaping strings [2] Ex \ within '' is '\' (or '\\' if at the end or before

Re: [PHP] Re: MSSQL, PHP and Linux

2004-09-13 Thread John Nichel
Greg Donald wrote: Just curious here.. Why are you hosting with someone who is using Fedora in the first place? Hope you're not paying for that. Fedora is a test platform for RedHat's non-free commercial distro. By it's very nature it will be broken. Quoted from: http://www.redhat.com/software

Re: [PHP] Re: MSSQL, PHP and Linux

2004-09-13 Thread blackwater dev
Nope, not paying for it. I think it is just a trial...he has tried for a few weeks to get the freetds library to work with redhat 9 with no luck so I think he just now wants to try fedora for the heck of it. We have no idea as to why it won't work with Red Hat 9...must me missing a small step or

Re: [PHP] Re: MSSQL, PHP and Linux

2004-09-13 Thread Greg Donald
On Mon, 13 Sep 2004 06:33:15 -1200, blackwater dev <[EMAIL PROTECTED]> wrote: > Still no luck with thismy host has asked: > > if someone has a (fedora core 2) RPM for us to install that has > freetds support built in? > > Anyone have anything like this?? Just curious here.. Why are you hos

Re: [PHP] Re: MSSQL, PHP and Linux

2004-09-13 Thread blackwater dev
Still no luck with thismy host has asked: if someone has a (fedora core 2) RPM for us to install that has freetds support built in? Anyone have anything like this?? Thanks! On Thu, 02 Sep 2004 07:45:00 -0700, Jon Bertsch <[EMAIL PROTECTED]> wrote: > > I didn't see it mentioned but if you

[PHP] Fwd: [ilugd] PHP and World Pay

2004-09-07 Thread zareef ahmed
--- Pushpendra Tiwari <[EMAIL PROTECTED]> wrote: > Date: 7 Sep 2004 08:25:04 - > From: "Pushpendra Tiwari" > <[EMAIL PROTECTED]> > To: [EMAIL PROTECTED] > Subject: [ilugd] PHP Help nedded urgently..! > > Dear Friends, > Hi..! > > I am PHP Programmer. I want to know that has any > body imp

RE: [PHP] Windows user authentication thru PHP and Apache

2004-09-02 Thread David Kevey
t; -Original Message- > From: Merritt, David [mailto:[EMAIL PROTECTED] > Sent: Friday, 3 September 2004 4:48 a.m. > To: PHP General List (E-mail) > Subject: [PHP] Windows user authentication thru PHP and Apache > > All, > > Wanting to build a login page which

Re: [PHP] Windows user authentication thru PHP and Apache

2004-09-02 Thread Marek Kilimajer
Merritt, David wrote: All, Wanting to build a login page which uses the same user information as the user's Windows account. Is there a way to validate a user's login information against the primary Windows domain controller using PHP and Apache? Searching the archives all I'm

[PHP] Windows user authentication thru PHP and Apache

2004-09-02 Thread Merritt, David
All, Wanting to build a login page which uses the same user information as the user's Windows account. Is there a way to validate a user's login information against the primary Windows domain controller using PHP and Apache? Searching the archives all I'm finding is how to d

[PHP] Re: MSSQL, PHP and Linux

2004-09-02 Thread Jon Bertsch
I didn't see it mentioned but if you don't do a 'make clean' command php will not update the info used by php_info(), so you see the old information. I've recently set up access to mssql databases and as repeated by many you need to do the following: install freetds libraries (in my case to /us

RE: [PHP] MSSQL, PHP and Linux

2004-09-02 Thread Jay Blanchard
[snip] On Thursday 02 September 2004 08:30, blackwater dev wrote: > the date is a very good question? Here is the info from my system > > -rwxr-xr-x1 root root 1371932 Sep 1 19:50 /usr/bin/php > > Not sure why its showing that date - Apache has been restarted. But that's probably yo

Re: [PHP] MSSQL, PHP and Linux

2004-09-01 Thread Jason Wong
On Thursday 02 September 2004 08:30, blackwater dev wrote: > the date is a very good question? Here is the info from my system > > -rwxr-xr-x1 root root 1371932 Sep 1 19:50 /usr/bin/php > > Not sure why its showing that date - Apache has been restarted. But that's probably your php-

Re: [PHP] MSSQL, PHP and Linux

2004-09-01 Thread Jennifer Goodie
-- Original message from blackwater dev : -- > the date is a very good question? Here is the info from my system > > -rwxr-xr-x 1 root root 1371932 Sep 1 19:50 /usr/bin/php > > Not sure why its showing that date - Apache has been restarted. > Are you sure apache i

Re: [PHP] MSSQL, PHP and Linux

2004-09-01 Thread blackwater dev
the date is a very good question? Here is the info from my system -rwxr-xr-x1 root root 1371932 Sep 1 19:50 /usr/bin/php Not sure why its showing that date - Apache has been restarted. On Wed, 01 Sep 2004 22:29:41 +, Jennifer Goodie <[EMAIL PROTECTED]> wrote: > --

Re: [PHP] MSSQL, PHP and Linux

2004-09-01 Thread James Kaufman
On Wed, Sep 01, 2004 at 04:39:51PM -0400, blackwater dev wrote: > I have tried recompiling with --with-mssql and --with-mssql=/usr/include/freetds > It all appears to compile correctly, except the info page does not > reflect the config was done with mssql at all. below is a snippet of > the confi

Re: [PHP] MSSQL, PHP and Linux

2004-09-01 Thread Jennifer Goodie
-- Original message from blackwater dev : -- > I have tried recompiling with --with-mssql and --with-mssql=/usr/include/freetds > It all appears to compile correctly, except the info page does not > reflect the config was done with mssql at all. below is a snippet of >

Re: [PHP] MSSQL, PHP and Linux

2004-09-01 Thread Ben Ramsey
Just try --with-mssql=/usr/include instead. Is that where freetds is installed for you? I think it's in /usr/local for me, so I use --with-mssql=/usr/local. Blackwater Dev wrote: I have tried recompiling with --with-mssql and --with-mssql=/usr/include/freetds It all appears to compile correctly,

Re: [PHP] MSSQL, PHP and Linux

2004-09-01 Thread blackwater dev
I have tried recompiling with --with-mssql and --with-mssql=/usr/include/freetds It all appears to compile correctly, except the info page does not reflect the config was done with mssql at all. below is a snippet of the config switches that were used. --enable-ftp \ --enable-magi

Re: [PHP] MSSQL, PHP and Linux

2004-09-01 Thread blackwater dev
We just tried again with the -mssql switch but it still doesn't seem to be therethe -mssql isn't on the info page...I don't have a clue... http://mwvre.ht-tech.net/info.php On Wed, 01 Sep 2004 15:08:41 -0400, Ben Ramsey <[EMAIL PROTECTED]> wrote: > Like I and others have said, you need to com

Re: [PHP] MSSQL, PHP and Linux

2004-09-01 Thread Ben Ramsey
Like I and others have said, you need to compile PHP --with-mssql Blackwater Dev wrote: No, I was using the mssql functions which I want to use. I tried the dbx functions example: $link = dbx_connect('mssql', $mssqldbhost,"",$mssqldbuser,$mssqldbpass); but go the error that the mssql module isn't l

Re: [PHP] MSSQL, PHP and Linux

2004-09-01 Thread blackwater dev
No, I was using the mssql functions which I want to use. I tried the dbx functions example: $link = dbx_connect('mssql', $mssqldbhost,"",$mssqldbuser,$mssqldbpass); but go the error that the mssql module isn't loaded. On Wed, 1 Sep 2004 14:06:55 -0400, John Holmes <[EMAIL PROTECTED]> wrote: > Fr

RE: [PHP] MSSQL, PHP and Linux

2004-09-01 Thread Dan Joseph
, 2004 1:19 PM > To: [EMAIL PROTECTED] > Subject: [PHP] MSSQL, PHP and Linux > > I need some help...I am helping a local business with a site which > needs to connect to a mssql db, my webhost uses linux and compiled php > with the freetds library and when I go to the info page..it

Re: [PHP] MSSQL, PHP and Linux

2004-09-01 Thread John Holmes
From: "blackwater dev" <[EMAIL PROTECTED]> I need some help...I am helping a local business with a site which needs to connect to a mssql db, my webhost uses linux and compiled php with the freetds library and when I go to the info page..it does show Microsoft SQL Server under dbx yet I still get t

Re: [PHP] MSSQL, PHP and Linux

2004-09-01 Thread Jennifer Goodie
-- Original message from blackwater dev : -- > I need some help...I am helping a local business with a site which > needs to connect to a mssql db, my webhost uses linux and compiled php > with the freetds library and when I go to the info page..it does show > Microsoft

Re: [PHP] MSSQL, PHP and Linux

2004-09-01 Thread Marek Kilimajer
blackwater dev wrote: I need some help...I am helping a local business with a site which needs to connect to a mssql db, my webhost uses linux and compiled php with the freetds library and when I go to the info page..it does show Microsoft SQL Server under dbx yet I still get the errors "called to

Re: [PHP] MSSQL, PHP and Linux

2004-09-01 Thread Frank M. Kromann
Hi, You should compile php with this option --with-mssql or --with-mssql=/path/to/freetds. This will enable the mssql extension. Enabling the DBX extension is not enough. DBX is just a wrapper arround other extensions. You still need to compile each of these extensions. - Frank > I need some h

[PHP] Re: MSSQL, PHP and Linux

2004-09-01 Thread Ben Ramsey
If freetds has been compiled and installed in the default location for it (/usr/local), then php needs to be configured --with-mssql=/usr/local Blackwater Dev wrote: I need some help...I am helping a local business with a site which needs to connect to a mssql db, my webhost uses linux and compil

[PHP] MSSQL, PHP and Linux

2004-09-01 Thread blackwater dev
I need some help...I am helping a local business with a site which needs to connect to a mssql db, my webhost uses linux and compiled php with the freetds library and when I go to the info page..it does show Microsoft SQL Server under dbx yet I still get the errors "called to undefined function mss

RE: [PHP] Weblog -Blog software wrtten in PHP and My SQL

2004-08-31 Thread Vail, Warren
: Central unit [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 31, 2004 11:31 AM To: [EMAIL PROTECTED] Subject: Re: [PHP] Weblog -Blog software wrtten in PHP and My SQL I've used nuike for a year or so, it was hacked 3 times, blog script there is ugly. Wordpress rocks! - Original Me

Re: [PHP] Weblog -Blog software wrtten in PHP and My SQL -- Thank you!!

2004-08-31 Thread Bestman4unowwa
Thanks to everyone that responded. This will keep me busy. I'll look into these -- wordpress, php nuke journals, cafelog, etc. Do any of you have any experience with these or others? Care to share your opinions?

Re: [PHP] Weblog -Blog software wrtten in PHP and My SQL

2004-08-31 Thread Xongoo!com: Central unit
: RE: [PHP] Weblog -Blog software wrtten in PHP and My SQL > PHP Nuke includes BLOG's and a lot more (referred to as Journals in the > App). > > http://www.phpnuke.org > > > Warren Vail > > > -Original Message- > From: [EMAIL PROTECTED] [mailto:[

Re: [PHP] Weblog -Blog software wrtten in PHP and My SQL

2004-08-31 Thread Chris Shiflett
--- [EMAIL PROTECTED] wrote: > Does anyone know of Blog sw available in the marketplace written in > PHP and maybe MySQL? http://www.s9y.org/ Chris = Chris Shiflett - http://shiflett.org/ PHP Security - O'Reilly Coming Fall 2004 HTTP Developer's Handbook

Re: [PHP] Weblog -Blog software wrtten in PHP and My SQL

2004-08-31 Thread Saqib . N . Ali
http://cafelog.com/ (PHP + mysql) a very light weight (simple and primitive) blog: http://www.xml-dev.com/blog/ Thanks. Saqib Ali https://validate.sf.net [EMAIL PROTECTED] wrote on 08/31/2004 10:28:09 AM: > Does anyone know of Blog sw available in the marketplace written in PHP

RE: [PHP] Weblog -Blog software wrtten in PHP and My SQL

2004-08-31 Thread Vail, Warren
tware wrtten in PHP and My SQL Does anyone know of Blog sw available in the marketplace written in PHP and maybe MySQL? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Weblog -Blog software wrtten in PHP and My SQL

2004-08-31 Thread eoghan
wordpress [EMAIL PROTECTED] wrote: Does anyone know of Blog sw available in the marketplace written in PHP and maybe MySQL? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Weblog -Blog software wrtten in PHP and My SQL

2004-08-31 Thread Justin Palmer
WordPress Wordpress.org - PHP/MySQL Lots of skins and support. Justin -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 31, 2004 10:28 AM To: [EMAIL PROTECTED] Subject: [PHP] Weblog -Blog software wrtten in PHP and My SQL Does anyone know of

Re: [PHP] Weblog -Blog software wrtten in PHP and My SQL

2004-08-31 Thread Xongoo!com: Central unit
Current trend in my opinion: http://wordpress.org/ -- Tadas Talaikis [EMAIL PROTECTED] http://www.xongoo.com - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, August 31, 2004 8:28 PM Subject: [PHP] Weblog -Blog software wrtten in PH

RE: [PHP] Weblog -Blog software wrtten in PHP and My SQL

2004-08-31 Thread Ed Lazor
> -Original Message- > Does anyone know of Blog sw available in the marketplace written in PHP > and > maybe MySQL? Go to Google and search for "blog php". I just did and there were several options available. -Ed -- PHP General Mailing List (http://www.php.net/)

[PHP] Weblog -Blog software wrtten in PHP and My SQL

2004-08-31 Thread Bestman4unowwa
Does anyone know of Blog sw available in the marketplace written in PHP and maybe MySQL?

Re: [PHP] php and SMS

2004-08-28 Thread raditha dissanayake
[EMAIL PROTECTED] wrote: I want to send SMS Text messages to cell phones from my server app I would also like cell phones to be able to send text messages back to my app how does one go about doing this ? Can I do a 'get' or a 'post' to some kind of sms gateway url ? Goto kannel.org and downl

Re: [PHP] php and SMS

2004-08-28 Thread Chris Shiflett
--- [EMAIL PROTECTED] wrote: > I want to send SMS Text messages to cell phones from my server app > I would also like cell phones to be able to send text messages back to > my app how does one go about doing this? This was done recently for Midnight Madness. The information given by the devel

[PHP] php and SMS

2004-08-28 Thread grahama
I want to send SMS Text messages to cell phones from my server app I would also like cell phones to be able to send text messages back to my app how does one go about doing this ? Can I do a 'get' or a 'post' to some kind of sms gateway url ? does anyone know what the costs are for something

Re: [PHP] PHP and Apache 2

2004-08-08 Thread Thomas Goyne
On Sun, 8 Aug 2004 16:20:55 +0300, Rosen <[EMAIL PROTECTED]> wrote: Hi, What is the reason, thath in the installation manual of PHP writes: "WARNING: Do not use Apache 2.0 and PHP in a production environment neither on Unix nor on Windows. " Thanks, Rosen http://www.zend.com/lists/php-dev/200406/ms

[PHP] Re: PHP and Apache 2

2004-08-08 Thread Aidan Lister
ts. I think that these efforts have slowed down to a halt, mostly because of lack of interest in the PHP development community, mostly because the only reliable way of using PHP and Apache 2 together is using the prefork MPM, which is effectively very similar to Apache 1. Good Apache 2 connectivi

[PHP] PHP and Apache 2

2004-08-08 Thread Rosen
Hi, What is the reason, thath in the installation manual of PHP writes: "WARNING: Do not use Apache 2.0 and PHP in a production environment neither on Unix nor on Windows. " Thanks, Rosen -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] php and images

2004-07-23 Thread Miroslav Hudak (php/ml)
I have a certain difficulties in case of processing large images thru GD2 library. GD2 has some problems with image processing and it results in some exception and GD just crashes. I have to mention, that the crash causes whole php interpreter to crash and execution of the script is terminated w

[PHP] Re: php and images

2004-07-23 Thread Torsten Roehr
"Roman Duriancik" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > I have problem with jpg pictures in php pages. Path and picture is > correct but when i want see picture in php script picture don't show. > I use PHP4.3.4 on apache server 2.0.44 on Windopws 2000 Server. > > Thanks f

[PHP] php and images

2004-07-23 Thread Roman Duriancik
I have problem with jpg pictures in php pages. Path and picture is correct but when i want see picture in php script picture don't show. I use PHP4.3.4 on apache server 2.0.44 on Windopws 2000 Server. Thanks for help. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: htt

Re: [PHP] what is difference between php and perl

2004-07-22 Thread Curt Zirzow
erl/php code snipplet was that php out of the box is much nicer than perl is as a web language. Simply re-enforcing php's foundation as a web language. > > Really, if you look at a lot of functions in PHP and Perl, they mimic each > other, and other languages (C, etc..).. It&

Re: [PHP] what is difference between php and perl

2004-07-22 Thread raditha dissanayake
Manuel Lemos wrote: Hello, On 07/22/2004 09:26 PM, Raditha Dissanayake wrote: I would have thought perl and php programmer would want to get together and trash asp or something. I think you mean, VBScript because ASP itself is not a language but rather a framework for using languages. You can us

Re: [PHP] what is difference between php and perl

2004-07-22 Thread Manuel Lemos
Hello, On 07/22/2004 09:26 PM, Raditha Dissanayake wrote: I would have thought perl and php programmer would want to get together and trash asp or something. I think you mean, VBScript because ASP itself is not a language but rather a framework for using languages. You can use PHP code in ASP lik

Re: [PHP] what is difference between php and perl

2004-07-22 Thread Matthew Sims
> I would have thought perl and php programmer would want to get together > and trash asp or something. PHP coders trash ASP. Perl coders trash everyone. :) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] what is difference between php and perl

2004-07-22 Thread Justin Patrin
On Fri, 23 Jul 2004 06:26:07 +0600, raditha dissanayake <[EMAIL PROTECTED]> wrote: > I would have thought perl and php programmer would want to get together > and trash asp or something. > ASP SUCKS! Happy now? Seriously, though, Perl is ok for some scripts and some people prefer it. I just don

Re: [PHP] what is difference between php and perl

2004-07-22 Thread raditha dissanayake
I would have thought perl and php programmer would want to get together and trash asp or something. -- Raditha Dissanayake. http://www.radinks.com/sftp/ | http://www.raditha.com/megaupload Lean and mean Secure FTP ap

Re: [PHP] what is difference between php and perl

2004-07-22 Thread Justin Patrin
On Thu, 22 Jul 2004 18:23:08 +, Curt Zirzow <[EMAIL PROTECTED]> wrote: > * Thus wrote Jurgen Stroo: > > "End of the commercial break, we're going back to the news headlines" > > > >... > > Net), perl is not mature, limited or inflexible (why do you think perl > > was able to evaluate to incorp

RE: [PHP] what is difference between php and perl

2004-07-22 Thread Dan Joseph
Hi, Or... #!/usr/bin/perl Use CGI; $q = new CGI; if ( $q->param_url("var") ) { Print $q->param_url("var") } Really, if you look at a lot of functions in PHP and Perl, they mimic each other, and other languages (C, etc..).. It's a personal pref

Re: [PHP] what is difference between php and perl

2004-07-22 Thread Curt Zirzow
* Thus wrote Jurgen Stroo: > "End of the commercial break, we're going back to the news headlines" > >... > Net), perl is not mature, limited or inflexible (why do you think perl > was able to evaluate to incorpate full OO, oh well). #!/usr/bin/perl print "HTTP/1.0 200\r\n"; print "Content-Type

Re: [PHP] what is difference between php and perl

2004-07-22 Thread Jason Davidson
b. You will find that PHP will far out-pace Perl coding, saving you both > > > time and money. PHP works concurrently with free solution components such as > > > Linux OS, Apache Web Server, MySQL Database and others (LAMP - > > > Linux-Apache-MySQL-PHP). These components

Re: [PHP] what is difference between php and perl

2004-07-22 Thread Justin Patrin
ime and money. PHP works concurrently with free solution components such as > > Linux OS, Apache Web Server, MySQL Database and others (LAMP - > > Linux-Apache-MySQL-PHP). These components all work together beautifully, > > yielding fast and stable applications. Invest some time into

[PHP] Re: newbie needs help in getting php and MySQL integrated

2004-07-22 Thread Chris Hunt
Hi, thanks for the help. I had removed the ";" but had not moved the libmysql.dll to the C:\windows\system32 directory. Also found in the manual that MySQL is not "included by default" in MySQL 5.0.0 and hence you need to include the extension. All working hunky dory now. thanks again to those

RE: [PHP] what is difference between php and perl

2004-07-22 Thread Jurgen Stroo
tabase and others (LAMP - > Linux-Apache-MySQL-PHP). These components all work together beautifully, > yielding fast and stable applications. Invest some time into it and see what > we mean. > > > > -Original Message- > From: Syed Ghouse [mailto:[EMAIL PROTECTED]

RE: [PHP] what is difference between php and perl

2004-07-22 Thread php-list
fast and stable applications. Invest some time into it and see what we mean. -Original Message- From: Syed Ghouse [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 21, 2004 2:06 AM To: php mailinglists Subject: [PHP] what is difference between php and perl Hi all will anybody tell me

<    4   5   6   7   8   9   10   11   12   13   >