I am trying to use any of the image functions with image data from a
mysql database. I can get these functions to work from files on the
server but for some reason, not out of the database. If any one has
gotten this to work, code you shoot me over some sample code, or
functions on what to do.
--
Pooya Eslami wrote:
Hi,
I want to write a php script for handling the username and password of users
on my website. What strategies are used for password protected pages? I
don't quite know where to start!
One strategy that I had in mind was to have a folder for each user and
access it via the user
Hello All,
I have a question. I installed PHP on a windows XP machine.
When I try to send a form it says:
"Warning: mail(): sendmail_from not set in php.ini or custom "From: header.
My header are as follows:
$subject = "FeedBack From Site";
$msg = "Senders Name: $_POST[name]\n";
$msg .= "S
On Mon, 2004-03-08 at 05:40, Phil Dowson wrote:
> Hi,
>
> I have been working with PHP for a few years now, and I feel very
> comfortable with it. I am considering branching out into windows
> application development, and I was wondering what language people would
> recommend for someone comfor
Hi,
I want to write a php script for handling the username and password of users
on my website. What strategies are used for password protected pages? I
don't quite know where to start!
One strategy that I had in mind was to have a folder for each user and
access it via the user name and password b
Hi,
I have been working with PHP for a few years now, and I feel very
comfortable with it. I am considering branching out into windows
application development, and I was wondering what language people would
recommend for someone comfortable with PHP.
I have heard that PHP can be used in this c
At 18.42 -0800 2004-03-07, Chris Shiflett wrote:
>--- Larry Brown <[EMAIL PROTECTED]> wrote:
>> I don't see how it could be to anyone's disadvantage. As a matter of
>> fact, I think that it would be great to also have it available as a soap
>> service as well.
>
>I was thinking the same thing afte
>But when i run the testinclude program I always get "Undefined variable
>errro on very first line. I know it is because vars are not defined yet,
>but i remember last time those warnings never used to come. What setting
>is needed in php.ini file ?
Check the manual for "error reporting."
---
php-general Digest 8 Mar 2004 02:42:57 - Issue 2633
Topics (messages 179697 through 179717):
Re: remote stop/start the applications
179697 by: Raditha Dissanayake
179698 by: CurlyBraces Technologies \( Pvt \) Ltd
Re: Let's start a php-advanced list!
179699 by: Larry
--- Larry Brown <[EMAIL PROTECTED]> wrote:
> I don't see how it could be to anyone's disadvantage. As a matter of
> fact, I think that it would be great to also have it available as a soap
> service as well.
I was thinking the same thing after reading Ben's comment. I think people
might be more i
Dear Ligaya Turmelle,
For example
After enter chinese words ( example ) though program ( Web ) to MS-SQL, then
search the data from the DB...
But the result of the records is not chinese words ( char ) !
Thank for your help !
Edward.
Ligaya Turmelle wrote:
> I don't understand what you are as
I have following code
testinclude.php
<%
echo "A $color $fruit"; // A
include 'vars.php';
echo "A $color $fruit"; // A green apple
%>
vars.php
<%
$color = "green";
$fruit = "Apple";
%>
But when i run the testinclude program I always get "Undefined variable
errro on very first line. I know it is
I don't see how it could be to anyone's disadvantage. As a matter of fact,
I think that it would be great to also have it available as a soap service
as well. If people well versed in different open source projects were able
to be listed on each projects' sites and provide soap service as well,
a
no, but i suppose you have options available to prevent them, and it may be
a sysadmins problem, but there is a good chance that it may be your fault, I
can see how if you are a freelance devloper, it may look bad if the client
wants to hire for another job, and your code was the flaw in an otherwi
Anders,
I think this really depends on how we get the word out to employers
about this service. I, for one, hope to use the new Atlanta PHP
(http://www.atlphp.org) group as a resource not only to educate and
network PHP developers, but as a way to bring knowledge of PHP to the
business world
Dear All,
I have a problem on getting content from a data file (data.txt).
I have many numbers in the file...all of them are about 2.XXX, and I need
them to plot a graph. But I just can't read them out as a integer.
I've used C++ program to read them before, but i don't know how to import
C++ pro
I don't understand what you are asking. Please explain.
Respectfully,
Ligaya Turmelle
PHPCommunity: Open Source, Open Community
For more information or to join the movement
www.phpcommunity.org
<[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED]
> Dear All,
>
> How to control php ( prog
Hi,
I'm one of the volunteers working on PHPCommunity.org.
There's been some talk about having a Job Listings section on the site, something
along the lines of jobs.perl.org, and We're wondering how much interest there is in
such a service. I'm sure all the unemployed PHP developers on the lis
Hi,
Sunday, March 7, 2004, 11:20:18 PM, you wrote:
L> Hi, thanks for a help. but your script doesn't work correctly.
L> function output($action){ // this is line 64.
L> $output = ''; //if no file we return an empty string
L> $fname = 'data/'.$action.'.txt';
L> if(file_exists($fname)){
L>
Is there any debugger i can use too se what is hapening?
I found dbg but that seems to only work if php is CGI installed, and I
do have serious problem compiling dbg.
I also found xdebug http://www.xdebug.org/ but it seems like it's not
for php 4.3.4, just 4.3.1. Downloaded the source also so I
I cannot believe that the server converts \r's to \n's. \n does not
count as two breaks, either. \r stands for carriage return and \n
stands for newline. Even if they are placed side-by-side (e.g. "\r\n"),
they should only count as one line. Unless I knew more about your code
or your applic
Thank you Ben. Using either str_replace("\n", "", $string); or
str_replace("\r", "", $string); solves the problem. My guess is that
when I submit the data there is both the \r and the \n in there (for
there showed 2 white space characters in between the broken text
lines). My guess is that t
request floods and such are not the responsability of the programmer is
it? Sounds more like a sys admin problem? i could be wrong.
Jason
"Martin Nicholls" <[EMAIL PROTECTED]> wrote:
>
> I know somebody who coded a PHP script that attempts to prevent post
> flooding and some other potential sec
I know somebody who coded a PHP script that attempts to prevent post
flooding and some other potential security 'flaws'.
I know quite alot about PHP, some things are still beyond my knowledge. I
was wondering if some people could have a look at it to see if it is a
viable way of reducing secrity r
Scott Taylor wrote:
What I really don't understand is why there are any line breaks at all,
because the trim is supposed to take out all \r & \n 's. Is there
another type of line break?
trim() actually only strips whitespace (including \r and \n) from the
beginning and ending of strings. See h
Dear all,
Thanks Kilimajer's help and I can finally build-in the GD library.
But when i use the imagecreate function for jpeg, don't know why there are
some unknown wordings appears. Sth like the following:
1oACEEEO¡ÑOUUaaceeeno
Don't know what's happening, I just use simple functi
is there a class or a function that makes it possible to write meta
information into a png or jpeg image?
any suggestion?
thanx in advance
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
what do you guys think of using a tag for discussion messages? This way
people that don't want to weed out lengthy discussions and attachments etc
can filter them out of list messages. A tag such as in the
subject line? Just my two cents.
Larry
-Original Message-
From: Marc Greenstock
sorry , u didn't get my point ..i will explain it again.
1.web server runs with some php scripts
2.It will show the out put of a certain executable file's result.
3.This file run in the /usr/local/src/./asd.pl
4.I need stop the function of that file , like ctrl+c
can u hel me further ?
You can only kill your own processes or you have to rely on a suexec
mechanism. What you should be doing is SFTA because this topic has been
discussed many times in the past.
all the best
CurlyBraces Technologies ( Pvt ) Ltd wrote:
By using php web page of a certain webserver can i go into the
php-general Digest 7 Mar 2004 14:15:48 - Issue 2632
Topics (messages 179676 through 179696):
Need Help in shoppin cart
179676 by: New Session
179677 by: Ryan A
179681 by: John Nichel
Re: UK Bank Holidays 2
179678 by: Raditha Dissanayake
Re: PHP and Apache Us
The RLimit* set of directive can define resource limitations in apache.
There is also aSendBufferSize directive but haven't used that so can't
comment. According to the situation that you describe perhaps saving the
file first isn't the solution either.
Juan E Suris wrote:
Right now I am gene
Hi,
I am no expert on sendmail configuration but my little knowledge tells
me sendmail shouldn't change any headers that are passed to it if it is
configured properly.
joel boonstra wrote:
On Sun, Mar 07, 2004 at 09:51:28AM +0600, Raditha Dissanayake wrote:
It's an often overlooked fact that
By using php web page of a certain webserver can i go into the some other
local plase in the same web server ?
Because for the special request i want kill some prosess which are runs in
the webserver.
All Telent and other remote login restricted from the firewall .
thanx
- Original Message --
On Sunday 07 March 2004 20:50, CurlyBraces Technologies \( Pvt \) Ltd wrote:
> Tell me even , is it possible to do so ??
Yes.
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intranet Applications Developmen
Burhan Khalid wrote:
Bambero wrote:
Hi
I need to split a string by the: , (comma) separator, but when the
comma is beetwen ""
it should be skipped.
Ex:
test ts sasa, assas "sasa,asaas" dasdas, da
=> test ts sasa
=> assas "sasa,asaas" dasdas
=> da
If this is a CSV file, you can try fgetcsv.
F
Tell me even , is it possible to do so
??
plz reply asap
- Original Message -
From: CurlyBraces Technologies ( Pvt ) Ltd
To: PHP
Sent: Friday, March 05, 2004 6:40 PM
Subject: Fw: remote stop/start the applications
- Original Message -
From: CurlyBraces Technologi
I just did, Thank you..
>
>you can post to the internals list.. they will respond fast. they are
>good that way. :)
>Jason
>
>"Erdener Gonenc" <[EMAIL PROTECTED]> wrote:
>
> Do anyone know who should I contact to report that bug?
>
> I've already dropped a note to forums at Zend...
>
> Thanks
>
>
you can post to the internals list.. they will respond fast. they are
good that way. :)
Jason
"Erdener Gonenc" <[EMAIL PROTECTED]> wrote:
>
> Do anyone know who should I contact to report that bug?
>
> I've already dropped a note to forums at Zend...
>
> Thanks
>
> --
> PHP General Mailing L
Do anyone know who should I contact to report that bug?
I've already dropped a note to forums at Zend...
Thanks
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
40 matches
Mail list logo