actually save the password anywhere in the
> script.
>
> On Fri, 3 May 2002, Mike Eheler wrote:
>
> > The problem is not in them being able to overwrite the .htaccess *and*
> > getting your FTP password.. those are the cons for both solutions we
> > have presented
s and if I'm
> doing it wrong perhaps I should begin recoding it.
>
> josh
>
> On Fri, 3 May 2002, Mike Eheler wrote:
>
>
>>If someone can overwrite your .htaccess there's a chance they can also
>>view files through the same exploit (possibly). They could
;>>You could use fopen() to connect to the file via ftp therefore keeping
>>>the .htaccess file owned by the user for increased security.
>>>
>>>Josh Boughner
>>>
>>>On Fri, 3 May 2002, Mike Eheler wrote:
>>>
>>>
>>>>I
#x27;s password in view of the httpd, which is
> even worse...
>
> miguel
>
> On Fri, 3 May 2002, serj wrote:
>
>>You could use fopen() to connect to the file via ftp therefore keeping
>>the .htaccess file owned by the user for increased security.
>>
>
It's possible, but is it really recommended? Wouldn't the
.htaccess/.htpasswd file have to be owned by the apache user, which
might leave it open to being overwritten by any kind of a
weak/exploitable script?
Mike
Josh & Valerie McCormack wrote:
> I've used the script phtaccess, which I think
In .htaccess:
auto_prepend_file "/dev/null"
auto_append_file "/dev/null"
Mike
Stefen Lars wrote:
> Usually, I use the Apache directive to add the prepend option.
>
> I already tried setting another prepend option in the apache directives,
> but it seems one does not overwite the other. I trie
... which still doesn't stop you from taking screenshots of the pages,
and printing those.
Mike
Jay Blanchard wrote:
> [snip]
>
>>Does anyone know of how to put a Word file on a web page without the user
>>being able to save it to their hard drive? And also another issue of making
>>it so they
I've always found it's good to set numeric primary keys to UNSIGNED.
Gives you a larger range, and it's not very likely those numbers are
ever going to be negative.
Also, there is absolutely no need to check Index or Unique when you have
selected Primary, as Primary implies both (hence why in
Seems to me that space in the file copy is what's causing problems. Try
changing "ads/ $File_name" to "ads/${File_Name}".
Just a note that doing things that way can cause big problems,
especially on unix systems.. imagine if you went to your website and type:
http://site/index.php?File=%2Fetc%
You could also set these values in your php.ini:
magic_quotes_gpc = off
magic_quotes_runtime = off
If you do this, then remember when inserting the data into a mysql
database, it still needs to be escaped:
$sql = sprintf(
"insert into table (id, field) values ('', '%s')",
mysql_escap
Typically it's done like:
$db = mysql_connect('localhost','username','password');
The MySQL database detects what host you're connecting from, and appends
that to your username. I'm not sure if it's possible to specify an
alternate host.
So if both PHP and MySQL are on the same machine, and y
, but it's documented.
>
> --
> Yasuo Ohgaki
>
> Mike Eheler wrote:
>
>> Here's a test you can try yourself.
>>
>> On your server, set up these two files:
>>
>> test.php
>>
>> > session_start();
>> if ($_RE
Pardon the parse error in test-unset.php.
change: header("Location: test.php"));
to: header("Location: test.php");
Mike
Mike Eheler wrote:
> Here's a test you can try yourself.
>
> On your server, set up these two files:
>
> test.php
> --
Here's a test you can try yourself.
On your server, set up these two files:
test.php
Click here to unset
Click here to set
test-unset.php
--
What's supposed to happen: You click on the set link, this sets the
variable. You then click on the unset link. This loads anoth
Yeah. If I understand correctly, if you do, like:
Then, I believe, the theory is that you will get the same "random"
number twice.
Mike
Miguel Cruz wrote:
> On Thu, 2 May 2002, Gerard Samuel wrote:
>
>>Quick question. Im using srand to seed array_rand in a script.
>>I read that srand shoul
Javascript cannot interact with PHP. You have to realise that the PHP
code has been already executed long before the javascript gets a chance to.
Mike
Morten Nielsen wrote:
> Hi,
> I got a php and a javascript page. In the PHP page I register a SESSION call
> 'info'. I would then like to put a
user-defined session handlers. I'll start with how I have set up the
handlers, please correct the process if it is wrong:
-- BOF --
function sess_open($save_path, $session_name) {
// open a database connection
}
function sess_close() {
// close the database connection
}
function ses
Well to make it case insensitive, you could change them to '/search/i'.
Adding that /i makes them case-insensitive.
Mike
Reuben D Budiardja wrote:
> On Thursday 02 May 2002 04:08 pm, J Smith wrote:
>
>>preg_replace() can be used with arrays.
>>
>
> Yeah, but how to make it case-insensitive be
The long way, but it will help in the understanding of it:
$timestamp = "20020305211704";
$year = substr($timestamp, 0, 4);
$month = substr($timestamp, 4, 2);
$day = substr($timestamp, 6, 2);
$hour = substr($timestamp, 8, 2);
$minute = substr($timestamp, 10, 2);
$second = substr($timestamp, 12, 2
First, change your form tag to:
Post's are better, and to be standard-compliant it should be defined
lower-case. Then in admin.php, just to see what is being returned, do:
Replace $_POST with $HTTP_POST_VARS if you're using a version of PHP
older than 4.1.0.
If still there is nothing, the
a CGI.
Mike
Anas Mughal wrote:
> Why do you have "#!/usr/bin/php" in your script?!
> You are running it thru the webserver. You shouldn't
> need that line.
>
>
>
> --- Mike Eheler <[EMAIL PROTECTED]> wrote:
>
>>Having a bit of a weird prob
-p argument to the end of that line:
>
> #!/usr/bin/php -q
>
> --
> Aaron Gould
> [EMAIL PROTECTED]
> Web Developer
>
>
> - Original Message -
> From: "Mike Eheler" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Tu
$result = mysql_query("select user from users where id = $_SESSION[id]",
$db);
No need to quote the key name in a string.
Mike
James Taylor wrote:
> I'm sure this has been asked before, but at least not within the last 600
> messages (i checked):
>
> I have the session variable $_SESSION['id
It's really quite simple. Here's a quick script that will dump all
variables sent in a form to an email address:
$email = '[EMAIL PROTECTED]';
$subject = 'Form Posted on ' . date('r');
$from = '"Your Website" <[EMAIL PROTECTED]>';
$message = '';
// PHP up to 4.0.6
foreach ($HTTP_POST_VARS as $ke
Is the line within a function? If so, it's possible that $HTTP_POST_VARS
hasn't been globalled.
Check to see if within the function that line is on that the line global
$HTTP_POST_VARS; exists.
Mike
On Tue, 05 Mar 2002 12:32:59 -0800, Lic. Carlos A. Triana Torres wrote:
> Hello all,
> I h
Having a bit of a weird problem with using PHP as CGI. The problem is
this.. the output is returning the #!/usr/bin/php line from the file.
Example:
/cgi-bin/test:
#!/usr/bin/php
Then in a web browser: http://www.example.com/cgi-bin/test:
#!/usr/bin/php
Hello World!
Has anyone else experien
s.. a good place to start
would be http://phpclasses.upperdesign.com/
Mike Eheler
SearchBC.com Technical Support
Mauricio Sthandier wrote:
> Hello, I'm new in php development... I was wondering how can I attach a Word
> (.doc) Document in an email sent with the mail() function (if I can d
That'll do! Thanks!
Mike
Jason Wong wrote:
> On Saturday 02 February 2002 02:29, Mike Eheler wrote:
>
>>Okay, my goal is to compile an array of *all* functions currently
>>defined and available in PHP 4.1.1.
>>
>>That's a simple task if all I want is f
Okay, my goal is to compile an array of *all* functions currently
defined and available in PHP 4.1.1.
That's a simple task if all I want is functions for the extensions I
chose to compile into PHP (get_defined_functions()), but what about the
other ones? Is there a place somewhere that has a t
Y",strtotime(odbc_result($resultado,'fechaasignacion')));?>
date accepts unix timestamps, not strings, so you have to convert that
string to a unix time with strtotime.
Mike
Jorge Arechiga wrote:
> Hi everybody
>
> I hope someone can help me in an issue on where i've been stuck for a
PHP doesn't support that.
Dunno if it plans to, either.
There are workarounds.. can't remember exactly how it's done, but I
think I saw it on phpbuilder.com in a tutorial somewhere.
Mike
Marc Swanson wrote:
> I'm not sure if this is a known feature in php.. but the following code will
> gene
That would probably give you more control over the data.. however is not
really an ideal solution. Also, if you want speed.. go with the file method.
That's how I'd do it, anyhow.
Mike
Qartis wrote:
> I'm running a logs system where log entries are .log files with filenames
> like 03012002.log
Just a correction on that. It started as two points, then grew into 4..
I should proof read more often ;)
Mike
Mike Eheler wrote:
> I disagree based simply on two points:
>
> a) Ideally, the $HTTP_POST/GET and $_POST/$_GET vars should be treated
> as "read only".
&g
Let's say you have this table, pseudo-coded:
TABLE table
tableid int auto_increment,
value text
;
You could run this query on it:
insert into table values ('','value');
And the id will be auto generated. Same would apply with:
inert into table (value) values ('value');
Mike
Phil Schw
I disagree based simply on two points:
a) Ideally, the $HTTP_POST/GET and $_POST/$_GET vars should be treated
as "read only".
b) There is no good reason to mix the two. Consistancy is the ideal. If
you are working on an existing project, and you have the implied need to
assign values to keys
Hiya,
Just looking for some tips on reading formatted config files. The config
file is pretty strictly formatted.. here's an example:
# this is a comment. any text on a line after a # should be ignored
section "section1" {
option "value";
option-array {
"value 1";
12
Julio Nobrega.
>
> Um dia eu chego lá:
> http://sourceforge.net/projects/toca
>
> Ajudei? Salvei? Que tal um presentinho?
> http://www.submarino.com.br/wishlistclient.asp?wlid=664176742884
>
>
> "Mike Eheler" <[EMAIL PROTECTED]> wrote in message
> [EMA
If this is the wrong place for it, please point me to the right place.
This is real small, though.. I'd like to see a shorthand for defining
arrays.. for example
$ucase_alphabet = array(['A'..'Z']); (creates an array of all alphabet
characters, uppercase)
$numeric = array([1..100]);
Or someth
Of course by --with-record I meant --with-recode
Mike
Mike Eheler wrote:
> I get this error when compiling php with ./configure
> --with-imap=../imap-2001a --with-record
>
> Any ideas on a workaround for this?
>
> /web/src/imap-2001a/c-client/libc-client.a(mi
I get this error when compiling php with ./configure
--with-imap=../imap-2001a --with-record
Any ideas on a workaround for this?
/web/src/imap-2001a/c-client/libc-client.a(misc.o): In function
`hash_lookup':
/web/src/imap-2001a/c-client/misc.c:311: multiple definition of
`hash_lookup'
/usr/li
Well being a former ASP programmer and a current PHP programmer I think
I can help you there.
The key point is ease of use. PHP provides far more functionality than
ASP (try finding a function to print out the date in ASP.. yeah, I
thought so), while at the same time giving you access to low-l
Hi There,
Okay, I have a server that allows a couple hundred virtual hosts that we
have run websites as we are a hosting company. Recently one of our
customers decided to spawn lynx through PHP. The process was running at
80% cpu for over 400 minutes, and it appears that Apache's RLimitCPU
di
echo date('m/d/Y', strtotime('September 1, 2002'));
http://www.php.net/manual/en/function.date.php
Mike
Aurelio wrote:
> hi,
>
> how i make to catch a future date, with this formatting 09/01/2002.???
>
> thanks,
> Aurélio Sabino
>
>
--
PHP General Mailing List (http://www.php.net/)
To u
help! I'll see what I can do.
Mike
Patrik Wallstrom wrote:
> On Tue, 8 Jan 2002, Mike Eheler wrote:
>
>
>>It's too late for that. And I don't believe that the system's crypt()
>>function just magically changed at exactly the same time we upgraded to
>&
It's too late for that. And I don't believe that the system's crypt()
function just magically changed at exactly the same time we upgraded to
PHP 4.1
Mike
Patrik Wallstrom wrote:
> On Tue, 8 Jan 2002, Mike Eheler wrote:
>
>
>>Is there any way to force PHP 4
Is there any way to force PHP 4.1's crypt to generate crypt's with
2-letter salts? We've written some apps that do things the hack way --
if (crypt($pass,substr($pass,0,2)) == $cryptpass) -- and changing all of
them to work the extended way is a real pain the arse. That includes
changing all o
Through suggestions of people here is the code I produced for a bookmark:
javascript:void(srch=prompt('Function Name?',''));if(srch)
{self.location.href='http://download.php.net/search.php?pattern=' +srch+
'&show=quickref';};
Of course that should all go on one line. That is a good hack for no
e script name "news.php" and not worry about it?
>
> On Thu, 3 Jan 2002, Mike Eheler wrote:
>
>
>>A 404 ErrorDoc would still reply with a 404 code, which could mess up
>>some search engines.
>>
>>I was thinking of the .htaccess solution, but I
I don't want to mess with the whole site, just a file or 10, or one
directory, etc.
Mike
Jason Murray wrote:
>>True, but if I remember right, the hit will end up in your
>>error_log not in your access_log.
>>
>
> Ah. Bugger.
>
> But since this would require messing with your Apache config
>
A 404 ErrorDoc would still reply with a 404 code, which could mess up
some search engines.
I was thinking of the .htaccess solution, but I'm not sure if that's
possible to force only certain files or perhaps all files in just a
certain directory to all be application/x-httpd-php?
I guess that
http://www.somesite.com/news/2002/01/02/keyword
I've seen some sites do this with other scripting languages (maybe even
PHP.. I just don't know).. I like the look of this *way* better. Anyone
have any insight as to how I can make that work with an Apache 1.3.xx +
PHP 4.1.x setup?
"news" would
Like google has it's toolbar, why not have a PHP Manual toolbar? That
would be *great*. Just type in the function name and hit "go" and the
manual comes up.
One for Moz & one for IE I'm sure would be appreciated.
I'd do it myself, but I have not the ability to code in C (or C++ for
that matte
$HTTP_SERVER_VARS['HTTP_REFERER']
or (php 4.1.x)
$_SERVER['HTTP_REFERER']
Mike
Matthew Walker wrote:
> Related to my last question about the cookies in images, is there any
> way to get the referrer from the calling page without passing it as an
> argument to the image generation script?
>
So is Horde 2.0.
And Turba 1.0
I think Chora 1.0 is due any day, as well.
Just noticed this at http://www.horde.org/
For anyone who doesn't know, Horde is an application framework built
upon the PEAR style of coding. IMP is *the* webmail solution for anyone
looking to provide webmail to their
Checkout the preg_replace page in the PHP manual (at
http://www.php.net/manual/en). There is an example there on removing all
HTML tags. You can just modify it to work on just comments.
Mike
Martin wrote:
> Hello! How can I easily strip off all html-comments () from
> a string?
>
> Martin
>
Depends what you want to do with it.
If you want it to grab messages from a POP server, and download them to
your local machine, then some sort of cyclic folders database structure
would help:
int auto_inc folderid
int default(0) parentid (= 0 if root, otherwise id of parent folder)
str folder
This happens when a tag is not within a block in
netscape 4.. if the select isn't meant to be part of a form, and is just
for navigation (javascript onchange or whatever), then just do
...
Mike
Edwin Boersma wrote:
> Hi,
>
> I'm developing a website for multiple browsers. In Netscape 4.xx
Try doing this
';
print_r(array($HTTP_SERVER_VARS,$HTTP_ENV_VARS));
echo '';
?>
And see if the information you want is in there anywhere.
Mike
> I don't believe that the system variables are available to php. I work on
> *nix mostly, but I have a windows machine at home running php
I'm working php script that would perform such a feat. I'll post news on
php.general when/if it's finished.
Mike
George Nicolae wrote:
> do you know if exist a php code beautifier for win32? pls tell me the
> address.
>
> --
>
>
> Best regards,
> George Nicolae
> IT Manager
> __
There's no way that I have found to actually execute a script as a
specified user, however:
Should tell you what user the web server is running as.
Mike
Charlesk wrote:
> I have been looking through the docs and found no help on either finding which user
>the EXEC'ed commands run as, or ho
You need to compile with ftp support. --with-ftp is not the right
command, it should be --enable-ftp
Mike
Sam Schenkman-Moore wrote:
> I've compiled php 4.0.6 on Darwin as CGI. "--with-ftp" shows up in the php
> configuration display but I still get this message:
>
> undefined function: ftp_c
rom ASP might code like this when they start.
Mike
Jack Dempsey wrote:
> really?
> $THIS_IS_A_VARIABLE=1;
> $this_is_a_variable=2;
>
> echo "$THIS_IS_A_VARIABLE\n";
> echo "$this_is_a_variable\n";
> ?>
>
> seems sensitive to me...
>
> Mi
ax
> highlighting instructions much easier, as the latest versions of Kate allow
> you to define highlighting rules in XML files, and the highlighting
> instructions are set up at run-time rather than compile time.
>
> Maybe over the XMas break I'll be able to finish it up.
>
I disagree.
That doesn't affect whether or not GPC variables are addslashes()'d.
Mike
Bas Van Rooijen wrote:
>
> set_magic_quotes_runtime (false)
>
> bvr.
>
> On Thu, 20 Dec 2001 09:43:28 +1100, Martin Towell wrote:
>
>
>>either set "magic_quotes_gpc" to "off" in you .ini file - or use
>>
This is done because magic_quotes_gpc is turned on. This makes it
possible to just insert submitted data into a MySQL database, without
preparing it first.
You can turn it off if you have access to the server config, or.. you
can do this:
if (get_magic_quotes_gpc()) {
foreach ($HTTP_POST_
http://sourceforge.net/tracker/index.php?func=detail&aid=495239&group_id=4113&atid=304113
Download the attached file, and run
patch -p1 -i quanta-2.0.1-php-4.1.0.diff
That will patch your source tree.. then just configure, make, install.
I've actually tested this one, so go nuts people. :) Ple
Shoot.. it didn't attach.
That's probably a good thing.
I'll put together a diff patch and put it somewhere for download.
Mike
Mike Eheler wrote:
> Attached is a text file that will update Quanta IDE 2.0.1 syntax
> highlighting for PHP.
>
> Simply use your favour
Attached is a text file that will update Quanta IDE 2.0.1 syntax
highlighting for PHP.
Simply use your favourite text edit quanta/kwrite/highlight.cpp in your
quanta-2.0.1 source tree, and paste the text from this attached file
overtop of the phpKeywords and phpTypes variables.
If anyone know
LOL.
Use Netscape 4.
Now there's a condtradiction you don't hear every day.
Mike
Jim Lucas wrote:
> hope you don't plan to use that example table in netscape 4.x
>
> - Original Message -
> From: "Mark" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>
> Sent: Tuesda
They sound like good ideas, with one quisp.. the sites are currently
being designed in *shudder* Dreamweaver.
They absolutely refuse to chop files up into header/footer includes, and
they want to be able to do all their colour customisation through their
beloved .css files.
Mike
Jimtronic wr
yeah
if you just installed, root doesn't have a password.. so you need to not
specify -p (this tells the server to try and authenticate with an empty
password, as opposed to attempting to authenticate with no password..
there is a difference):
mysqladmin -u root password mypassword
Mike
Jer
Hi There,
I'm looking for some community feedback on being a coder working with
designers. Techniques that work that allow my php-inept page/graphic
designer comrade make changes to the layout of the page without
destroying my code, or requiring me to make any changes whatsoever.
Or what is t
Try re-writing your script to accept the url as such:
http://server/content.php/media/file.asf
Mike
Stephen Vandyke wrote:
> Hello PHP people :)
>
> I have a tough one here, I wrote a content script that plays media files,
> but I can't seem to get things to actually buffer and stream as they
Ahh forget it .. I figured it out
change to is_dir("$path/$file").. *smack*
ignore this altogether
mike
Mike Eheler wrote:
> Consider this code for traversing through a directory structure:
>
>
> function traverse($path='.') {
> $path = realpa
I'll note that the erroneous command is the is_dir($file).. this causes
the problem.
Mike
Mike Eheler wrote:
> Consider this code for traversing through a directory structure:
>
>
> function traverse($path='.') {
> $path = realpath($path);
> $
Consider this code for traversing through a directory structure:
';
traverse();
echo '';
?>
Now when I run it in a directory that has a file with spaces in it's
name.. for examples purposes, the file willbe called "file name with
spaces".
Directory : /home/mike/php/test
-
http://home.rica.net/alphae/419coal/
Mike
Adewale.Johnson wrote:
> Dr.Adewale.Johnson.
> 16 Kingsway Road
> Ikoyi, Lagos
> Nigeria..
> [EMAIL PROTECTED]
> 6th, December , 2001.
>
> Sir,
>
> Request for Urgent Business Relationship.
>
> First I must solicit your confidence in this tr
The problem with that is giving feedback to the user. If you're busy
generating a string to display to the user and the mysql server is
running slow, or for whatever reason, the user is looking at a blank
page until the process is completed entirely, then they have all the
data dumped on them
If I understand you correctly, you want to put a separator when the
letter changes.
Try this:
$result = mysql_query('select name from people order by name');
$lastletter = '';
while ($data = mysql_fetch_array($result)) {
$curletter = strtolower(substr($data['name'],0,1));
if ($curlett
Yes! Please release some of these results. I am *very* interested. I
have been coding using the method you demonstrate (terminating PHP any
time possible, and rarely, if ever, using echo and print).
I would love to know how much, if any, difference it makes.
Mike
Jim Lucas wrote:
> the site
What's a speicherplatz?
Mike
Andy wrote:
> Hi there, I am searching for a provider who fullfills those criterias and
> does not cost a fortune:
>
>
>>- PHP >= 4.06 bzw. PHP 4.x mit GDLibrary ab 2.0
>>
>
>>- GDLibrary >= 2.0
>>
>
> > - PHP installed as module
>
>
>>- mind 5 Subdomains
>>
You can build php as an apache2 DSO by using
--with-apxs2=/path/to/apache/bin/apxs
make sure you have built apache with the 'so' module enabled.
mike
Jon Niola wrote:
> With all the architectural changes to the Apache platform for 2.x, will
> PHP 4.x run as a module still, or is that TBD?
>
Let's not forget MyAccess, a plugin for Access that lets you manage
MySQL databases from within the familiar Access interface.
This is the best solution for someone moving from Access to MySQL.
Mike
Dave Brotherstone wrote:
> MySQL is a DBMS, SQL is a language. MySQL has an implementation of
I'm not sure what to make of this? Is it spam? Is it an acclaim? What is it?
Mike
Richard Lynch wrote:
> As you may know, I run a tiny record label "No Genre" in Chicago.
>
> Ulele's "Seed" CD released last week on "No Genre" has been selected as
> a Featured CD on the FRONT PAGE of http://cd
Syntax error
Andrey Hristov wrote:
> test
>
>
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]
I was a bit surprised by it when I posted to the newsgroup earlier, but
I think it's a great idea.
Mike
Jim Winstead wrote:
> as some of you may have noticed over the last few days, a new method of
> spam protection has been implemented on lists.php.net.
>
> if you post to one of the lists.ph
If you only have the text directory listing and don't have access to the
file to do a filetime() call on, you can try this:
$modified = stat('header.php');
echo 'Last Modified: ' . date('F j, Y, g:i a',
strtotime(substr($modified[9],35,12)));
Tha's a really long way around it, and a much bette
Could this be solved in any way by using nl2br()?
Mike
Phantom wrote:
> I solicit information from a text field and save the data in mysql to be
> pulled out later and displayed as text on a webpage.
>
> However, Carrage Returns in the text field do not appear in the webpage
> text.
>
> Wit
Excellent.
Keep me up to date on your findings. Our license only allows for the
software to be used on one machine so I can't build a test machine. :/
Mike
J Smith wrote:
> Seconds after I write this, I see on zend.com that the Optimizer has a new
> version for 4.1.0. Don't see anything abou
Yeah.. code to divide the message into multiple parts, base64_encode the
file, and attach it that way.
I suggest looking for some kind of Email class that can do that for you.
Try http://phpclasses.upperdesign.net/
Mike
Ben Clumeck wrote:
> When I use the script to upload an attachment to my
Do a variable dump and see if any variables have that value:
Mike
Pong-Tc wrote:
> Hello Listers
>
> I have a question on how to get the full path of source file. I have a
> form like this:
>
>
>
> Send this file:
>
>
>
> I pass the request to myupload.php. If my source file's path
$fp = fopen('/var/mail/myaccount','w');
fwrite($fp,'');
fclose($fp);
that could work. I was going to suggest doing:
unlink('/var/mail/myaccount');
touch('/var/mail/myaccount');
But I assume that since you're against deleting it, then there must be
some sort of permissions in place that you don'
Does anyone here subscribe to the Zend developer's suite? We have the
optimizer and debugger installed with a 4.0.5 installation and are
looking into upgrading to 4.1.0 but being a production machine, we don't
want to do anything that would jeopardize the stability of the machine.
Has anyone h
You could also do it like:
' ?>
Mike
Steve Haemelinck wrote:
>Hi Guys
>
>I am developing with PHP and XML. Now I experience some problem with the
>processing instructions of xml ()
>which causes PHP to return a parsing error.
>This is logical because PHP. Does anybody got an idea how to solve
Oops.. my bad
$quarterbacks[$data['NAME']][$key] = $value;
Mike
Mike Eheler wrote:
> $result = mysql_query("select NAME,ATTEMPTS,COMPLETIONS,YARDS,TD,INT
> from players where pos = 'QB'");
> // or whatever it takes to get just qb's
> while ($da
$result = mysql_query("select NAME,ATTEMPTS,COMPLETIONS,YARDS,TD,INT
from players where pos = 'QB'");
// or whatever it takes to get just qb's
while ($data = mysql_fetch_array($result)) {
foreach ($data as $key => $value) {
// I've noticed that $data stores numeric and text keys, this
More than likely not. Putting an exit statement after a header redirect
is just good practice and ensures that nothing gets executed after
redirecting.
Mike
Don wrote:
>Hi,
>
>I have a PHP script that uses the following code to redirect to a page of the user's
>choice:
>
>header("Location: h
if ($str1 == $str2) ?
If that's not it, check http://download.php.net/manual/en/ref.strings.php
Mike
Mainolfi, Joe wrote:
>Is there another way to compare the values of 2 strings other than strcmp().
>This function is not consistent with its results and is causing so many
>headaches. I am som
Sorry, I sent that too soon.. here's my test results:
http://localhost/test.php?var[test][5][]=test
[HTTP_GET_VARS] => Array
(
[var] => Array
(
[test] => Array
(
[5] => Array
Should work. Why not give it a try, and let the good people of this list
know?
Mike
Jordan wrote:
>Is there any way to pass a multi-dimenstional through a url. something like
>/cart.exe?item[1][1]=3
>
>just curious.
>
>-Jordan
>
>
>
--
PHP General Mailing List (http://www.php.net/)
To uns
1 - 100 of 142 matches
Mail list logo