int imagepng ( resource image [, string filename])
On Tue, 6 Jul 2004 13:48:44 +0200
Victor Sp?g Arthursson <[EMAIL PROTECTED]> wrote:
> Hi!
>
> Creating a transparent png using GD and PHP is (almost) no problem, but
> it's impossible to save?>
> No matter what I try, the saved image wont rem
Hello List,
I'm trying to get the following code to work :
"US",
"stateOrProvinceName" => "state",
"localityName" => "town",
"organizationName" => "foo",
"organizationalUnitName" => "foo",
"commonName" => "www.domain.com",
Thanks for the feedback. As it turns out, the reason I was getting zero
data bytes in my UDP packet was that I had declared the packet variable
outside the function in which I was using it.
$packet = chr(0x01).chr(0x1d) etc
function doSomething($x)
{
// using $packet in here gives you an
* Thus wrote Russell Curtis:
> I'm trying to use the split function to identify the extension of an
> uploaded file:
>
>$file_name = $_FILES['userfile']['name'];
>$pieces = explode(".", $file_name);
>$file_extension = $pieces[1]; // piece2
You could always use the built in php functio
* Thus wrote Andrew Nagy:
> Curt Zirzow wrote:
>
> >* Thus wrote Andrew Nagy:
> >
> >>How do you use the call_user_func function with call-time
> >>pass-by-reference deprecation?
> >>
> >>For example:
> >>
> >>function fun(&$arg) {
> >> $arg++;
> >>}
>
> ...
>
> >$func_call = 'fun';
> >$func_call
Rosen wrote:
Ok,
I don't understand why IP adress will bi "invisible" for $_SERVER variable.
It should be there, but mostly because the CGI 1.1 spec requires that it
be provided to the script. There is no physical requirement for it to be
there.
Reasons for it not being present could include:
o Inc
On Thursday 08 July 2004 00:05, Keith Greene wrote:
Here's a simple (and probably quite common) example of how not checking user
input will lead to disaster:
DELETE FROM users WHERE userid = $userid
userid is an integer column. If you didn't check your inputs and someone
injected
$userid
Ryan Schefke wrote:
I'm trying to display the value of that variable in an input box
Seriously, how many times can this question be asked in a week?
You just need to run htmlentities() or htmlspecialchars() on the data
before you place it in the element.
--
---John Holmes...
Amazon Wishlist: www
You want htmlentities(), not addslashes().
On Wed, 7 Jul 2004 20:35:54 -0400, Ryan Schefke <[EMAIL PROTECTED]> wrote:
> In the below code the variable $thecomments might have some quotations in
> it. Like:
>
> $thecomments = how you "like me now"
>
> I'm trying to display the value of that vari
In the below code the variable $thecomments might have some quotations in
it. Like:
$thecomments = how you "like me now"
I'm trying to display the value of that variable in an input box using the
value=" " as shown below; however, the double quotations are screwing me up.
Can someone pleas
On Thursday 08 July 2004 07:17, Rosen wrote:
>
> Ok - then how linux server communicate with client - the server must have
> IP adress to whitch to send data.
Look some form of IP *will* be set and *will* be available in $_SERVER. What
you was using in your original post has been deprecated
On Wednesday 07 July 2004 05:43 pm, Shaun wrote:
> Hi,
>
> Can someone tell me why
>
> echo '$_SERVER[HTTP_REFERER] = '.$_SERVER[HTTP_REFERER].'';
>
> Produces
>
> $_SERVER[HTTP_REFERER] =
>
> Is this a problem with my server configuration, if so is there a SERVER
> variable I can use instead?
>
I
John W. Holmes wrote:
>> IP adress not send ?!? And how server communicate with client ?
>
> A variety of ways. What I meant is that it's not sent in the browser's
> headers that it sends to the site, which is where getenv() and
> $_SERVER[] would snatch it from.
Correct me if I'm wrong, but shoul
Search google for javascript slideshow script. Javascript slideshow need
an array of image names, this can be done by php and mysql when dynamically
generate the page.
Alex Shi
> I would like to have images displayed automatically using PHP with a
> Database and/or an array of images. Is there
I use the following without problem:
$fp = fsockopen("udp://www.server.com", 24250, &$errno, &$errstr, .2);
if (!$fp) {
$status = "Server not available";
} else {
$trigger =
chr(hexdec('FF')).chr(hexdec('FF')).chr(hexdec('01')).chr(hexdec('00'));
fwrite($fp,$tr
Hi,
Thursday, July 8, 2004, 3:38:41 AM, you wrote:
AN> Hmm ... this still echos 0 and not 1. I am using 4.3.7 with all
AN> warnings on.
AN> Does anyone know how to use this function or anything similiar with
AN> passing by refernce. Since the call-time pass by reference is
AN> deprecated, th
Ok,
I don't understand why IP adress will bi "invisible" for $_SERVER variable.
"John W. Holmes" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Rosen wrote:
>
> > Can I get just adress of the IP, with which the server communicates ?
>
> If you don't see the IP address somewhere in t
Rosen wrote:
Can I get just adress of the IP, with which the server communicates ?
If you don't see the IP address somewhere in the $_SERVER variable, then NO.
--
---John Holmes...
Amazon Wishlist: www.amazon.com/o/registry/3BEXC84AB3A5E/
php|architect: The Magazine for PHP Professionals – www.phpa
Thanks,
This for the users, thath come from one IP adress - I know about it, but,
Can I get just adress of the IP, with which the server communicates ?
"Lars Torben Wilson" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Rosen wrote:
>
> > IP adress not send ?!? And how server communi
I'm trying to send some binary data to a UDP server using PHP. The examples
I've been able to find show sending binary data over TCP, or they show
sending text over UDP.
I'm constructing the messages using the below:
$text_msg = "Hello, World\r\n";
$binary_msg = chr(0x01).chr(0x02).chr(0x00)
Rosen wrote:
IP adress not send ?!? And how server communicate with client ?
[snip]
The httpd server might know the remote IP address, but that doesn't
mean that it has to tell PHP about it. The SAPI module may or may not
set the value, for instance.
Even if you could rely on the IP address, in man
I've used this function before a couple of times, but I haven't tested
it fully. Give it a go if you want.
/*** BEGIN CODE ***/
// Function get_ip
function get_ip()
{
// List of possible ip sources, in order of priority
$ip_sources = array
(
"HTTP_X_FORWARDED_FOR",
"HT
:)
Ok - then how linux server communicate with client - the server must have IP
adress to whitch to send data.
"John W. Holmes" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Rosen wrote:
>
> > IP adress not send ?!? And how server communicate with client ?
>
> A variety of ways
Rosen wrote:
IP adress not send ?!? And how server communicate with client ?
A variety of ways. What I meant is that it's not sent in the browser's
headers that it sends to the site, which is where getenv() and
$_SERVER[] would snatch it from.
Do not rely on IP addresses. Trust me.
--
---John Ho
IP adress not send ?!? And how server communicate with client ?
"John W. Holmes" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Matthew Sims wrote:
>
> >>Hi,
> >>How can I get remote IP adress of client?
> >>I use the fillow script::
> >>
> >>$ip=getenv('HTTP_X_FORWARDED_FOR');
> >>
Matthew Sims wrote:
Hi,
How can I get remote IP adress of client?
I use the fillow script::
$ip=getenv('HTTP_X_FORWARDED_FOR');
if (!$ip)
{
$ip = getenv('REMOTE_ADDR');
}
But sometime it return me "unknown" sa IP adress.
Can someone help me ?
Thanks in advance!
$_SERVER["REMOTE_ADDR"]
Either metho
> Hi,
> How can I get remote IP adress of client?
> I use the fillow script::
>
> $ip=getenv('HTTP_X_FORWARDED_FOR');
> if (!$ip)
> {
> $ip = getenv('REMOTE_ADDR');
> }
>
>
> But sometime it return me "unknown" sa IP adress.
>
> Can someone help me ?
>
> Thanks in advance!
$_SERVER["REMOTE_ADDR"]
Hi,
How can I get remote IP adress of client?
I use the fillow script::
$ip=getenv('HTTP_X_FORWARDED_FOR');
if (!$ip)
{
$ip = getenv('REMOTE_ADDR');
}
But sometime it return me "unknown" sa IP adress.
Can someone help me ?
Thanks in advance!
--
PHP General Mailing List (http://www.php.net/)
Joe Harman wrote:
I was curious if anyone out there has some pros and cons to storing a
website template that is extracted from a mysql db and stored in a
session... is this an efficient way to do it?
also... does anyone know what the size limitations for a session would
be?
There's no practical li
Hey everyone...
I was curious if anyone out there has some pros and cons to storing a
website template that is extracted from a mysql db and stored in a
session... is this an efficient way to do it?
also... does anyone know what the size limitations for a session would
be?
Thanks,
Joe
--
PHP G
I would like to have images displayed automatically using PHP with a
Database and/or an array of images. Is there any sample code available
for doing that?
Can that be done with Flash and PHP?
Todd
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub
Hello,
I got an error message when trying following script:
The errstr said "25: Inappropriate ioctl for device".
I'm using PHP 4.3.0. Its phpinfo indicates that OpenSSL is
enabled.
However, I also tested the script on a server with php 4.3.2
and it works perfect. Both PHPs are OpenSSL enabl
Hi!
I'm testing HTML Mime Mail Class, it's really complete. Features:
- text
- text + attached
- html
- html + attached
- html + Embeds
Who has experience with this class?
Regards,
Juan
> This class
> http://www.phpbuilder.net/snippet/detail.php?type=snippet&id=614 it's
> good., but i can't emb
On Wed, 7 Jul 2004 22:43:11 +0100, Shaun <[EMAIL PROTECTED]> wrote:
> Hi,
>
> Can someone tell me why
>
> echo '$_SERVER[HTTP_REFERER] = '.$_SERVER[HTTP_REFERER].'';
>
> Produces
>
> $_SERVER[HTTP_REFERER] =
>
> Is this a problem with my server configuration, if so is there a SERVER
> variable
Marek Kilimajer wrote:
Lars Torben Wilson wrote:
Josh Close wrote:
So basically there is no easy way around this.
What I'm trying to do is have a page return to a page that was a
couple pages back with the same get info. On the second page I can do
$return_url = $_SERVER['HTTP_REFERER'];
to get the
Shaun wrote:
Hi,
Can someone tell me why
echo '$_SERVER[HTTP_REFERER] = '.$_SERVER[HTTP_REFERER].'';
Produces
$_SERVER[HTTP_REFERER] =
Is this a problem with my server configuration, if so is there a SERVER
variable I can use instead?
Many thanks
My guess is you didn't come to the page with that co
Hi,
Can someone tell me why
echo '$_SERVER[HTTP_REFERER] = '.$_SERVER[HTTP_REFERER].'';
Produces
$_SERVER[HTTP_REFERER] =
Is this a problem with my server configuration, if so is there a SERVER
variable I can use instead?
Many thanks
--
PHP General Mailing List (http://www.php.net/)
To unsu
I have been working on this all day, and am not getting this to work. I
am creating an application where a user would authenticate against
Active Directory. Yesterday I was able to get PHP to connect to the AD
server and display entries using this script.
// PHP script to connect to the Active
Lars Torben Wilson wrote:
Josh Close wrote:
So basically there is no easy way around this.
What I'm trying to do is have a page return to a page that was a
couple pages back with the same get info. On the second page I can do
$return_url = $_SERVER['HTTP_REFERER'];
to get the previous url. But then
Matthew Sims wrote:
I think a good programming habit it to treat it as if it were off.
With regards to magic_quotes_gpc, you can't just "treat it as if it were
off" otherwise you may end up escaping data twice if it's not really off
on a server that runs your code. Detect it's value with
get_mag
Justin Patrin wrote:
On Wed, 7 Jul 2004 10:31:17 -0700, Brian Dunning <[EMAIL PROTECTED]> wrote:
The PHP directive magic_quotes_gpc is on by default, and it
essentially runs addslashes() on all GET, POST, and COOKIE data.
Why doesn't this automatically prevent injections, since it escapes out
an
Brian Dunning wrote:
I have a question about this. Here is from the documentation:
The PHP directive magic_quotes_gpc is on by default, and it
essentially runs addslashes() on all GET, POST, and COOKIE data.
Why doesn't this automatically prevent injections, since it escapes out
any single qu
Josh Close wrote:
So basically there is no easy way around this.
What I'm trying to do is have a page return to a page that was a
couple pages back with the same get info. On the second page I can do
$return_url = $_SERVER['HTTP_REFERER'];
to get the previous url. But then I need to pass it on to t
Thix class http://www.phpbuilder.net/snippet/detail.php?type=snippet&id=614
it's good., but i can't embed Image in message body, i used function
embed_image.Who have experience in this class?.
Regards,
Juan
> Hi!
> The class it ok.
> How can I put a GIF in Base64 in the message body?
>
> Regards
Torsten
Here it is, if it is any use to you?
John
---
$sql = 'SELECT *,MATCH (KW,AUS)
AGAINST (\''.stripslashes($searchenquiry).'\' IN BOOLEAN MODE)
AS relevancy FROM '.$table.'
WHERE MATCH (KW,AUS)
AGAINST (\''.strips
> > Or should I URLencode $searchenquiry or ... how should I approach this?
> Hi John,
> you are looking for htmlentities():
> http://de3.php.net/htmlentities
> Regards, Torsten Roehr
Torsten,
Thanks. I think I'm going to start with htmlspecialchars().
htmlentities() might be over kill?
Great :)
J
"Justin Patrin" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> On Wed, 7 Jul 2004 10:06:25 +0200, Torsten Roehr <[EMAIL PROTECTED]>
wrote:
> > "Curt Zirzow" <[EMAIL PROTECTED]> wrote in message
> > news:[EMAIL PROTECTED]
> > > * Thus wrote Torsten Roehr:
> > > > > >
> > > > > > How d
"John Taylor-Johnston" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> I have created an .inc that allows me to click on a submit to show the
next or previous 25 records found etc. The problem is that if $searchenquiry
includes a quotation mark, the html looks like:
>
>
>
> Is there
It works. Just not busy. I prefer to use and post with my (Netscape) newsgroup reader.
See: news://news.php.net/php.general
If memory serves me correct, it will accept anyone's post that has a valid email
address.
In any case, it keeps the inbox clean.
Barophobia wrote:
> ok, it's been about an
I have created an .inc that allows me to click on a submit to show the next or
previous 25 records found etc. The problem is that if $searchenquiry includes a
quotation mark, the html looks like:
Is there a function to encode $searchenquiry to do this?
Or should I URLencode $searchenquiry o
On Wed, 07 Jul 2004 13:44:21 -0400, Andrew Nagy <[EMAIL PROTECTED]> wrote:
> Curt Zirzow wrote:
>
> > * Thus wrote Andrew Nagy:
> >
> >>How do you use the call_user_func function with call-time
> >>pass-by-reference deprecation?
> >>
> >>For example:
> >>
> >>function fun(&$arg) {
> >> $arg++;
>
> On Wed, 7 Jul 2004 10:31:17 -0700, Brian Dunning <[EMAIL PROTECTED]>
> wrote:
>> I have a question about this. Here is from the documentation:
>>
>> The PHP directive magic_quotes_gpc is on by default, and it
>> essentially runs addslashes() on all GET, POST, and COOKIE data.
>>
>> Why doesn'
Curt Zirzow wrote:
* Thus wrote Andrew Nagy:
How do you use the call_user_func function with call-time
pass-by-reference deprecation?
For example:
function fun(&$arg) {
$arg++;
}
$var = 0;
call_user_func("fun", $var);
echo $var; //echoes 0 instead of 1
$func_call = 'fun';
$func_call($var);
Curt
Tom Rogers wrote:
> Sorry about that, I checked it in cli and it doesn't give a warning.
> This is another way:
>
> function fun($arg) {
> $arg++;
> }
> $var = 0;
> call_user_func_array("fun", array(&$var));
> echo $var;
Hmm ... this still echos 0 and not 1. I am using 4.3.7 with all
warn
On Wed, 7 Jul 2004 10:31:17 -0700, Brian Dunning <[EMAIL PROTECTED]> wrote:
> I have a question about this. Here is from the documentation:
>
> The PHP directive magic_quotes_gpc is on by default, and it
> essentially runs addslashes() on all GET, POST, and COOKIE data.
>
> Why doesn't this a
It may escape a quote, but injections would still be possible in other ways.
It gets passed in as \' but then used normally as ' when it's the the variable.
-Josh
On Wed, 7 Jul 2004 10:31:17 -0700, Brian Dunning <[EMAIL PROTECTED]> wrote:
> I have a question about this. Here is from the document
I have a question about this. Here is from the documentation:
The PHP directive magic_quotes_gpc is on by default, and it
essentially runs addslashes() on all GET, POST, and COOKIE data.
Why doesn't this automatically prevent injections, since it escapes out
any single quotes they try to subm
On Wed, 7 Jul 2004 10:06:25 +0200, Torsten Roehr <[EMAIL PROTECTED]> wrote:
> "Curt Zirzow" <[EMAIL PROTECTED]> wrote in message
> news:[EMAIL PROTECTED]
> > * Thus wrote Torsten Roehr:
> > > > >
> > > > > How do you check which button was pressed (read: which action should
> be
> > > > > performed
ok, it's been about an hour since i "subscribed" and i still haven't
received any messages so i'm sending this one as a test.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Gabe wrote:
Can someone help me understand how people are able to use SQL
maliciously if you don't protect against it in PHP? For example, I've
written a very simple search SQL statement that takes the value of a
variable for the search criteria ( from a webpage form ). I don't
understand how
> SELECT autoQuesID, fldQuesTitle, fldBody FROM tblFAQ_Question WHERE
> (blnHidden = FALSE AND ((fldBody LIKE '%$strCriteria%') OR (fldQuesTitle
> LIKE '%$strCriteria%')));
Say $strCriteria comes from one of the values in the $_REQUEST array,
a user change is coming through in that variable. so
For example, if you are not quoting your criteria:
sql = mysql_query("select * from users where name=".$name);
if someone enters the following in the name field, you're toast:
"Jim; delete from users;"
on the contrary:
sql = mysql_query("select * from users where name='".$name."'");
will simply loo
[snip]
Can someone help me understand how people are able to use SQL
maliciously if you don't protect against it in PHP?
[/snip]
This is a complex subject, but let us say that you didn't do checking at
all, someone might be able to pass a delete statement in a form box like
"DELETE FROM `table` WH
Can someone help me understand how people are able to use SQL
maliciously if you don't protect against it in PHP? For example, I've
written a very simple search SQL statement that takes the value of a
variable for the search criteria ( from a webpage form ). I don't
understand how someone cou
FROM Mr.EMEKA OKADIGBO, AND JUNIOR ONES
FEDERAL CAPITAL TERRITORY,
ABUJA.
NIGERIA
Email:[EMAIL PROTECTED]
IT IS WITH DUE RESPECT AND HUMILITY WE SEND THIS MAIL TO YOU WHICH WE BELIEVE WILL BE
OF GREAT INTEREST TO YOU AND IN VIEW OF THE FACT THAT YOU WILL BE OF A GREAT
ASSISTANCE TO ME AND MY JU
"Curt Zirzow" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> * Thus wrote Torsten Roehr:
> > "Curt Zirzow" <[EMAIL PROTECTED]> wrote in message
> > news:[EMAIL PROTECTED]
> > > * Thus wrote Torsten Roehr:
> > >
> > > And if it did, which one does it send? If there are multiple
> > >
Hi
Im sure there will be others out there that will completely disagree with
me, but why dont you look at Sams teach your self PHP.
The reason I suggest this is because its cheap, it has excerises in them, it
pretty much has all the dirty for you.
I bet they (Sams) have pretty much thought in the
* Thus wrote Torsten Roehr:
> "Curt Zirzow" <[EMAIL PROTECTED]> wrote in message
> news:[EMAIL PROTECTED]
> > * Thus wrote Torsten Roehr:
> >
> > And if it did, which one does it send? If there are multiple
> > buttons on a page, does it send the one closest to the focused
> > item? or does it sen
Hello,
Use a token and a database, I am using the following:
1. I setup a table called token_table with columns:
1. token_id - primary DB key -- auto incremented
2. token_name - actual token string
3. token_date - date created
4. token_userd - user id that
Hi!
The class it ok.
How can I put a GIF in Base64 in the message body?
Regards,
Juan
> - Original Message -
> From: "Curlys" <[EMAIL PROTECTED]>
> To: "PHP" <[EMAIL PROTECTED]>
> Sent: Wednesday, July 07, 2004 1:04 PM
> Subject: [PHP] sending attachments
>
>
>> can some body help me to s
So basically there is no easy way around this.
What I'm trying to do is have a page return to a page that was a
couple pages back with the same get info. On the second page I can do
$return_url = $_SERVER['HTTP_REFERER'];
to get the previous url. But then I need to pass it on to the next
page, t
Hi,
POST is the technique where you send the data by adding it to the body
of the message. In other words after sending the usual HTTP headers you
continue to write on the same socket connection the data that you want
to pass to the server. In get you do not write after the headers but
append t
How can I post data without having it submitted from within a form?
With get I can just add it to the url. Is there a php function for this?
--
-Josh
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Christophe Chisogne wrote:
raditha dissanayake a écrit :
IMAP being a general file access protocol, there are inherent
security problems to be aware of. On some srv, you could easily
get /etc/passwd by simply knowing a single user/password.
Please explain how.
[sorry to be off-topic on a php list
Josh Eastgate wrote:
Hi,
I have made a shopping kart for a web site, in
flash...and I have it so when the shopping kart is
submitted...all the order details (variables) are sent
to a PHP file that sends the order to the businesses
email.
My main problem is with the PHP file. I dont know how
to use
"Josh eastgate" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Hi,
>
> I have made a shopping kart for a web site, in
> flash...and I have it so when the shopping kart is
> submitted...all the order details (variables) are sent
> to a PHP file that sends the order to the businesses
>
Hi,
I have made a shopping kart for a web site, in
flash...and I have it so when the shopping kart is
submitted...all the order details (variables) are sent
to a PHP file that sends the order to the businesses
email.
My main problem is with the PHP file. I dont know how
to use IF THEN ELSE statem
Marek Kilimajer a écrit :
> it's not the fault of the imap protocol.
IMAP is a general file access protocol[1] (POP3 isnt)
So IMAP is more dangerous, by its very nature.
From a user perspective, this doesnt matters.
But it's very different when you're administrator
taking care of a site's security.
Hello,
I am a PHP coder for the last 4 years doing mostly PHP MySQL stuff. Off
late I have been requested by a number of programmers and students to
teach PHP. I am wondering how different teaching is from coding and how
to design the contents of a 1-2 week training course. I am planning to
begin w
- Original Message -
From: "Curlys" <[EMAIL PROTECTED]>
To: "PHP" <[EMAIL PROTECTED]>
Sent: Wednesday, July 07, 2004 1:04 PM
Subject: [PHP] sending attachments
> can some body help me to send an email attachment ( a log file ) from php
?
> Actaually i need a real guide plz
Hi,
You should read something about sending headers with
php's email functions.
BTW... PEAR and phpclasses.org has some classes to do
so.
You may also use this class availabel on
phpclasses.org
http://www.phpclasses.org/browse/package/32.html
zareef ahmed
--- Curlys <[EMAIL PROTECTED]> wro
hi
can some body help me to send an email attachment ( a log file ) from php ?
Actaually i need a real guide plz
thanx in advance
curlys
Many thanks - just what I was looking for!
Cheers
Russell
--
---
Russell Curtis
M +44 (0) 7796268780
www.russellcurtis.com
www.buildingdetails.co.uk
"Ewout" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
>
> - Original Message -
> From: "Ru
Anyone know how to write pocket excel files and how to write the
contacts file for pocket PC? I want to let my users download files
straight to their pocket PCs without having to run a conversion process
in the middle.
Thanks,
Robert
--
PHP General Mailing List (http://www.php.net/)
To unsubscr
- Original Message -
From: "Russell Curtis" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, July 07, 2004 12:24 PM
Subject: [PHP] Using split to establish extension of file
> I'm trying to use the split function to identify the extension of an
> uploaded file:
>
>$file_
--- Russell Curtis <[EMAIL PROTECTED]> wrote:
> I'm trying to use the split function to identify the
> extension of an
> uploaded file:
>
>$file_name = $_FILES['userfile']['name'];
>$pieces = explode(".", $file_name);
>$file_extension = $pieces[1]; // piece2
>
> Which will work, provi
I'm trying to use the split function to identify the extension of an
uploaded file:
$file_name = $_FILES['userfile']['name'];
$pieces = explode(".", $file_name);
$file_extension = $pieces[1]; // piece2
Which will work, providing that the uploaded file only has one full-stop in
the name (
Christophe Chisogne wrote:
Example: badly configured server, angry user john using mozilla
and knowing a single login/password on the server
(that login doesnt even have a valid shell, ex /bin/false)
In mozilla, john creates an IMAP account, choosing '/etc'
as directory folder, then 'subscribe' to
John W. Holmes wrote:
I'd prefer the text file. It's easier to open that and change values
plus they don't have to worry about PHP syntax as much. Haven't tried,
but you should be able to import them as private variables for your
class...
Thanks for the advice John. OK, so extending this a bit
I'd prefer the text file. It's easier to open that and change values
plus they don't have to worry about PHP syntax as much. Haven't tried,
but you should be able to import them as private variables for your
class...
Thanks for the advice John. OK, so extending this a bit: would it be
better
raditha dissanayake a écrit :
IMAP being a general file access protocol, there are inherent
security problems to be aware of. On some srv, you could easily
get /etc/passwd by simply knowing a single user/password.
Please explain how.
[sorry to be off-topic on a php list but I'll answer anyway]
Exam
"Curt Zirzow" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> * Thus wrote Torsten Roehr:
> > > >
> > > > How do you check which button was pressed (read: which action should
be
> > > > performed) when not relying on this?
> > > >
> > >
> > > The button is generally *not* sent by the
92 matches
Mail list logo