Hi
I am still battling alot with understanding how sessions work (don't
work in my case).
Firstly: I am trying to find a reliable method for coding with sessions
that will work on basically any server and any browser; meaning no
cookies and passing the SID to all url's manually.
My app has the
What are good books/websites about sessions.
I'm looking for more advanced stuff, I have the Luke Welling/Laura
Tompson book, and have read the manual, but I still have issues that are
unresolved.
Thanks
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php
password.
I don't know if you would like me to post my code ( it is quite a bit
already ) but I would really appreciate it if someone could look at it,
and then point out where I'm missing the picture, as then I would have
two pictures that I can compare and see where my reasoning fa
back to sid mangling only if cookies are
>disabled. You would probably be better off just letting php manage this
>for you.
>
>-Rasmus
>
>On Tue, 30 Jul 2002, Petre wrote:
>
>>Well, I have asked a couple of questions on this list, but they havn't
>>really helped a
to get the session id. So, a quick
>little mockup to illustrate this.
>
>login.php:
>ini_set('session.use_cookies',false);
>ini_set('session.use_trans_sid',false);
>session_start();
>$sid = session_name().'='.session_id();
>session_
. I guess
>the client should be informed of the options here:
>
>1. log in every so-often as needed (if there is lots of activity, the
>session probably won't die all day anyway), and have heaps more security
>
>2. log in once only, and have the whole system wide-open forever
ini_set() calls and take out the $sid=...
>and stuff and it should simply work.
>
>On Tue, 30 Jul 2002, Petre wrote:
>
>>Thanks, will work through this immediately.
>>Just to be clear.
>>If I DO stick with your suggestion of letting PHP do the url mangling,
>&g
HI
Is there a way I can disable the client's browser back button, forcing
them to use the navigation I built into the page?
Ideally, when they try to press "BACK" on browser, a popup asking them
to use the navigation instead would win first prize.
The reason I'm asking is again to do with sessi
;
>Just my opinion.
>
>Martin Clifford
>Homepage: http://www.completesource.net
>Developer's Forums: http://www.completesource.net/forums/
>
>
>>>>Petre <[EMAIL PROTECTED]> 07/31/02 01:16PM >>>
>>>>
>HI
>Is there a way I can di
the variables
>that the form passed after they are processed. Do I make sence?
>
>César
>
>>-Original Message-
>>From: Petre [mailto:[EMAIL PROTECTED]]
>>Sent: Wednesday, July 31, 2002 2:43 PM
>>To: Martin Clifford
>>Cc: php-general
>>Subject:
Exactly.
The only way I've seen that this can be prevented is if the form action
is PHP_SELF, so, you call the page onto itself and use a isset($submit),
but I have reasons for not going that route, one being that I have
already have a navigation laid out, and changing that will be a nightmare!
I would suggest you rather do the following ( over and above the
htmlentities as already suggested )
In stead of doing
echo " ";
to rather
echo '';
The reason is; there is a difference between echo 'stuff' ; and echo
"stuff";
The first (single quotes) is treated as literal content, ie, PHP jus
When you read the first line, split the data into it's components , then
assign each value to a variable.
Call them:
$octet_1,$unix_time_1 etc.
Now, start the loop.
Inside the loop, read the next line, assign to $octet_2, $unix_time_2
etc.
Do your calculations ( $answer = $octet_2 - $octet_1 etc. )
The problem you are having took me a while to grasp. Basically, what
happens is that sendmail sends the mail as the user php/apache was
installed as (usually nobody@ or apache@ yourdomain.com).
Setting the Return-Path does not work, as you cannot override the
Return-Path set by the server in this w
Almost exactly the same question as the message with subject: Sendmail
configuration
The problem you are having took me a while to grasp. Basically, what
happens is that sendmail sends the mail as the user php/apache was
installed as (usually nobody@ or apache@ yourdomain.com).
Setting the Ret
You have to use sendmail with the -f flag.
I have written a small test util to do this:
On Thu, 2003-01-23 at 16:12, Adam Voigt wrote:
> I have a site with a PHP auto-mailer where the owner of the site gets a
> report
> generated from the DB, it all works fine, except his server has spam
> fil
Hi
I have a rather annoying problem regarding forms.
I have built an app that allows the users to fill in a rather large form
(much like a claim form) and then have the data pumped into a mysql db.
The problem is: the users want to be able to "save" their forms on their
systems as a) backup/proof
reate the form in Excel and then figure out a way to
> import that into your database using a webapp
> c) client side app :(
>
> > -Original Message-
> > From: Petre Agenbag [mailto:[EMAIL PROTECTED]]
> > Sent: Tuesday, January 28, 2003 2:35 PM
> > To: [EM
Hi Chris
On Tue, 2003-01-28 at 22:09, Chris Shiflett wrote:
> --- Petre Agenbag <[EMAIL PROTECTED]> wrote:
> > I have a rather annoying problem regarding forms.
> > I have built an app that allows the users to fill
> > in a rather large form (much like a claim form)
Two ways:
a) echo "blabla # $blabla";
or
b) echo 'blabla # '.$blabla;
The # character must just be inside the echo's quotes.
On Wed, 2003-02-12 at 13:36, Paul McQ wrote:
> I am writing an application in which I need to redirect to an url using the
> Header function. This redirection must inc
HI
I am trying to do the following:
I have an ftp server configured, but instead of the user having to use
an ftp client, I'd like them to use the browser: So I'm trying to make a
mini web-based ftp client. Idea is to get their username and password (
and maybe the ftp address as well?) and to the
HI
This is a sort-of continuation on my previous question regarding being
able to "puch" a file to a client machine using PHP.
I have created a login page that connects to the ftp server and then
lists the contents of the folder. My original hope was that I could
somehow have the user just click o
Hi
I have two servers on two different networks. I would like to implement
some sort of a watchdog application between the two to inform me should
either of the machines go down or has a connection problem.
I was thinking along the line of using a PHP script running from cron on
an hourly basis to
HI
I'm having a bad thinking day. I know it's going to be a very easy
solution, but please humour me.
I have a mysql table with a bunch of subscribers and the date that they
subscribed.
I want to query the table to find all the subscribers who will come up
for renewal within the current month. So,
Sorry, forgot to mention, the subscription is annual, so the
subscription date I have for the subscriber is lets say 2002-02-28 , so
I want to "capture" that he will need to renew by 2003-02-28 as well as
all people past today's date...
--
PHP General Mailing List (http://www.php.net/)
To uns
ld do it.. or at least it does on mine anyways...
>
>
> - Original Message -
> From: "Petre Agenbag" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Tuesday, February 25, 2003 4:07 AM
> Subject: [PHP] reminder mail when date is within a month of t
I presume you are talking about phpMyAdmin here.
The Browse link only works when there are entries in the tables, ie., it
won't work on empty table.
You must first insert data into the tables, and for that you uise the
INSERT link.
You can change the tables by using the PROPERTIES link.
On Tue,
It all depends on what you will do with the data... The use will dictate
the level of cleaning up.
You MUST clean it up for DB entries as you mentioned, but if you are
only going to e-mail the contents "as-is" to yourself etc, then cleaning
up the data becomes of lesser importance.
On Sun, 2003-03
Garbage collection is a random process. You can however set the
probability of it starting on every session call in the php.ini file,
along with the elapsed time of a session variable, after which it is
considered garbage.
On my system, my probability is set to "1", meaning there is a 1% chance
of
Well, I guess it's all about the type of application you're writing and
the kind of resources you have at your disposal...
Making garbage collection 100% will basically cause the system to go
through the steps of determining what should be disposed and what not,
and that would be determined by the
Hi Chris
The first book, Teach Yourself PHP and MySQL in 24 Hrs: I got that one
myself, but it tends to gather dust nowadays...
It was very useful in the beginning with learning the basix syntax etc,
but I quickly outgrew it, and rarely use it at all, not even for
reference.
I got the book called
Hi List
Firstly, this question is arguable more about XML than PHP, but they are
interlinked, so I hope it is "topical" for this list.
Firstly, Where I come from:
I am VERY comfortable with PHP/MySQL on Linux and understand all those
concepts.
Now I'm trying to see the benefits of XML, and quit
wever, i have used xml for creating sql queries and setting up
> configureation files which are extremely reliabe.
>
> --
> BigDog
>
>
>
> On Tue, 2003-07-08 at 15:51, Jeff Harris wrote:
> > |-Original Message-
> > |From: Petre Agenbag [mailto:[EMAIL PROTECTED]
HI list
Is there an elegant way to know when the last time through the loop is
going to be and to do something else?
I want to search through a table by "exploding" the search string and
then compounding my own sql string by working through the array.
>From my example below, you can see I use a
Sheer genius my man!
Thanks!
On Mon, 2003-07-14 at 13:38, Tom Rogers wrote:
> Hi,
>
> Monday, July 14, 2003, 9:11:11 PM, you wrote:
> PA> HI list
>
> PA> Is there an elegant way to know when the last time through the loop is
> PA> going to be and to do something else?
>
>
> PA> I want to sear
Following works nicely for me now, thanks all!
connect("localhost","user","password","table");
$table_name = "main";
if ($_POST[any_all] == "any") {
$logic = "or";
}
elseif ($_POST[any_all] == "all") {
$logic = "and";
}
elseif ($_POST[any_all] == "exact") {
$logic = "exact
Well, it should never be, it comes from a drop down that only has 3 options,
any, all or exact
Any caveats there?
-Original Message-
From: David Otton [mailto:[EMAIL PROTECTED]
Sent: Monday, July 14, 2003 2:58 PM
To: Petre Agenbag
Subject: Re: [PHP] elegant way of doing something else
Hi List.
I cannot see my error:
I have relation tables setup.
main
id entity_name main_type etc etc date_in
1 testtype1 x y 2003-06-02
2 test2 type2 xx yy 2003-03-11
3 test3 type1
Grr
Needed to reset the $XXX and $YYY vars BEFORE the for loop...
Anyway, should you have nothing better to do, plz look through and see
if there is a "better" way to do this with possibly less queries made on
the db...
Ta
On Wed, 2003-07-16 at 09:25, Petre Agenbag wrote:
> Hi
your default before the script
can use it?
Petre
On Tue, 2003-07-15 at 17:39, David Otton wrote:
> On Tue, 15 Jul 2003 16:47:22 +0200, you wrote:
>
> >Well, it should never be, it comes from a drop down that only has 3 options,
> >any, all or exact
> >Any caveats the
Hi List
Sorry, tried to find it in manual...
I'd like to query a db and and see how big the result is in bytes. How
can I do that?
Thanks
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Yes, well, that complicates things.
You see, I'm trying to determine the size that the $_POST variable will be
in bytes, because there is a byte limit in the php.ini file for POST
variable size, so I was hoping for something easy like bytes_size($_POST)...
Would also be handy to calculate how much
Hi List
Just want to make sure:
Is there no way for me to easily determine the byte size occupied by a
variable (regardless of type)?
It might be trivial, or I'm missing the point (as per usual)...
I would like to find the actual byte size that is transmitted when say a
$_POST variable is sent,
If you place files inside a webfolder, then they are publicly
accessible, period.
They might not be obvious, ie. you would have to guess that there are
files in a specific folder AND know the exact name of the file, but if
you do happen to guess correct, then the files are downloadable.
There are
a simple extract($_POST) or extract($_GET) would also work
On Mon, 2003-07-21 at 14:22, stfmoreau wrote:
> Hi,
>
> include this code in your header file :
> // _GET
> if (isset($_GET))
> while (list($key, $val) = each($_GET))
> {
> eva
Well, firstly, you should not have to use the double \\ when using the
single quotes, try it without and see if it works...
ie,
exec('c:\WINNT\system32\cmd.exe /c START c:\test.bat > c:\xxx.txt');
> ?>
On Mon, 2003-07-21 at 16:34, Mikael wrote:
> Hello all, I am trying to execute a bat file, a
If you want to "use PHP", then you must use the headers() function. BUT,
with the header function, you MUST make sure that there will be absolutely
NO output to the page before the header() function is called, not even a
space...
Otherwise, you can simply use a meta refresh...
-Original Messa
Quit horsing around fellas, what if the developers take interest in this
thread and decide it's a good idea to release PHP6 with cranial
electrodes that will detect "what I want to do", and instead of me
having to code the application, PHP will just spit out the
application... That way our bosses w
Hi Mike, List
Where is the $place variable coming from that you use in your query's where
clause?
I hope it is not being POST'ed or GET'ed (sic), cause then you might have
the dreaded old register_globals issue.
Humour me,
echo your sql string in your code and see if it actually has something in
Hi List
OK, I've posted this on the MySQL list as well, but it seems a bit quiet
there, and arguably it could definately be a PHP rather than mysql question
depending on whether it can be done with one query (then it was/is a mysql
query), or whether it should be done with some structures and mult
Look;s like he has short_open_tags = on in php.ini, BUT, as I understand
it, this is a supplemental setting, meaning that it does not disable the
use of the (proper) I have a client who had me upload a relatively simple script to his
> server. Oddly, it does not work there but works every where e
Hi List
I've been trying to do something with one MySQL query, but I don't think
it is possible, so, I would need to probably do multiple queries, and
possibly have queries inside loops, but I am rather weary of that so,
I'd like your views/possible solutions to doing the following:
Consider thi
You should read up on classes and objects in the manual.
On Thu, 2003-08-14 at 09:14, James Johnson wrote:
> Hello,
>
> I've searched through Zend and php.net and can't find the answer.
>
> In the following code:
>
> $this->vendor = $vendor;
>
> What does the -> mean or do?
>
> Thanks,
>
OK, Difficult to see from your pseudo code EXACTLY what it is that you
want to do, but I'll take a stab anyway...
Firstly, instead of using your elaborate ways of running through the
result set and extracting the variables, use something like this:
$sql = "whatever";
$result = mysql_query($sql);
of either service.
You can also scrutinize your /var/log/messages file to see if there are
any evidence of system lockups or other errors.
Regards
Petre
On Wed, 2003-04-02 at 09:04, Nicole wrote:
> ---
> My System:
> A dedicated server with:
> Red Hat 7.2
>
Your problem is not with PHP but with basic HTML.
Your tag needs an action="www.somepage.com" in order to "do"
something. With PHP, you can call the same page back onto itself.
On Fri, 2003-04-04 at 14:37, David McGlone wrote:
> Hi all, I have a real quick question. I'm trying to learn PHP and r
Hi
I want to have a textarea that contains details read from a mysql table,
but I want to echo each row so that it is on a new line. What is the
"new-line" character for a textarea? ( in effect the reverse of nl2br()
)
Thanks
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe,
Hi
Thanks, I DID use \n, BUT, I made a stupid mistake, I did:
And the literal ' did not "parse" the \n, replacing with " works fine...
On Thu, 2003-06-05 at 16:32, CPT John W. Holmes wrote:
> > I want to have a textarea that contains details read from a mysql table,
> > but I want to echo
RegisterGlobals = Off
You need to access these variables by
$_POST[aVariable] or in your case ( adding the variables to the end of a
URL means you are using the GET method: $_GET[aVAriable] etc.
On Wed, 2003-05-28 at 11:37, [EMAIL PROTECTED] wrote:
> Hi all!
>
> I'm using Apache 2.0.45, PHP 4.
.
> $var1 = $_GET[var1];
> $var2 = $_GET[var2];
> ...if that's what you wanted? (Not sure I want to, but just to know)
>
> Again, thank you! =)
>
> Daniel
>
>
> - Original Message -
> From: Petre Agenbag
> To: [EMAIL
s what you wanted? (Not sure I want to, but just to know)
>
> Again, thank you! =)
>
> Daniel
>
>
> - Original Message -
> From: Petre Agenbag
> To: [EMAIL PROTECTED]
> Cc: [EMAIL PROTECTED]
> Sent: Wednesday, May 28, 2003 11:40 AM
> Subject: Re: [PHP] Variables do
Maybe they could include a quick "overview" of the latest changes as
well as a link to the on-line manual in your "sign-up" message when
joining the list?
On Wed, 2003-05-28 at 11:46, Chris Hayes wrote:
> Could someone with power over php.net please try to make this change in
> variable handling
Hi List
I'm investigating different possibilities to generate printable and
read-only documents, and the "best" method seems to be generating PDF's,
however, I have NO experience with working with PDF's, and the examples
in the manual only list a simple "one-liner" text pdf.
Where can I find more
Hi List
I recently installed 4.3.1 and enabled the magic_quotes_gpc to deal with
quotes in mysql inserts.
However, I think I have run into a problem that might be related, and
was wondering if there is an easy way to fix it:
I have a script that gets user input from a drop-down, on the action
pa
lash (\) and NUL (the NULL byte).
>
> - Original Message -
> From: "Petre Agenbag" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Friday, June 13, 2003 2:43 PM
> Subject: [PHP] dealiong with quote's in SQL strings
>
>
> > Hi Lis
Thanks, it was there right infront of me...
Just as a matter of interest, are there security/performance issues with
this setting as well as the magic_quotes_gpc or other oddities that it
could cause?
On Fri, 2003-06-13 at 15:54, CPT John W. Holmes wrote:
> > I recently installed 4.3.1 and enable
Hi List
Is there a difference in the way PHP handles the magic_quotes_gpc
between these versions?
I had 4.0.1 running on my server for a little over a year and all went
well, ie, data that contained quotes etc were discreetly handles by PHP
and inserted into MySQL with no problems ( when you vies
Hi List
I don't know what I'm doing wrong:
Firstly, I upgraded from 4.0.1 to 4.3.1 and made sure that I have
similar settings in php.ini wrt register_globals and magic_quotes.
I now have problems with some of my apps:
For instance:
IN a mysql db, I would have a name like :[ whatever "whateve
OK, this is the URL that my code produces after it get's the my_var from
the mysql table.
my_var in the table is => whatever whatever "whatever whatever"
So I do a select and I do a $my_var = $myrow['my_var'] (after all the
proper mumbo jumbo about the $myrow = mysql_fetc_assoc...etc.)
I then do
Hi lists ( and all the guys trying to help me)
Firstly
SORRY, I oversimplified my examples that I posted in the hope that I
would get to the solution faster.
What i failed to mention in my stupidity, was that I echoed the variable
as the value of a form input text field, so I actually messed up
Hi List
I am having trouble using headers.
I try to include a redirect header in my script, but is fails with the
familiar ( headers already sent) error.
I KNOW you should put the headers call where it will cause the first
output, and I do that, the only thing happening infront of the headers
ca
What you also need is to htmlspecialchars() the vars that you echo as form
element values, else your HTML will be broken if one of the vars contains "
. This should work for both text fields and textareas
or
-Original Message-
From: Lso . [mailto:[EMAIL PROTECTED]
Sent: Wednesday,
Have you checked register_globals = on/off in your php.ini?
If register_globals=off, then you must access your POST variables by:
$_POST['whatever'];
and your get (the stuff you put at the end of your URL's):
$_GET['whatever'];
On Mon, 2003-06-30 at 15:48, Simon Chappell wrote:
> Hi can anyone
reason why it looks like your page is not doing anything, is
because the if cannot be satisfied...
You should thus go through that sample code and change the nameing of your
POST and GET variables (ie, the variables that are "passed" to the next page
to the abovementioned method and all sho
Hi List
OK, firstly, sorry if this has been on the list before...
What I'd like to do is something like this:
I currently have an app that takes user input via a normal html form,
and then pops the content into mysql.
The problem is that lots of user complain that the submit times out due
to sl
ve complicated task on hand mate. cant u simply consider span the
> user input over multiple pages? i mean using 2 or more form on different
> pages instead of a single form on one single page. if this cant be done,
> we'll think of other measures. but this is by far the most simple
Well, I'm still a bit concerned about what would happen if the
connection got broken while they are busy...
The session will time-out (by most defaults, after 1440s), so if they
cannot re-connect, and somehow get the same SESSID, then all would be
lost that they have done so far..., and that is the
Hi Kristin
Yes, of course that is a possibility, and it would surely address the
problem of "resuming" at a later stage. I'm just rather worried at
managing these "broken" submissions. They might start one, then for some
reason don't finish, and forget about it altogether...
But, I think my bigges
Hi
I have posted here about session problems etc, but I think I found the
problem:
My Form variables are not passed at all!
Look at this:
index.php
page2.php
";
echo " POST_VARS: ".$_POST["test"]."";
echo " normal test :".$test."";
?>
I have installed a "everything" RedHat 7.3 installa
Sorry, posted with the wrong address, here it is again:
I have RH 7.3 with "everything" install, and I didn't make ANY changes
to the default php.ini, and have checked it and register_global = On
Now, when I make a simple form and action page combo, the variables are
not passed:
You can see from
Hi
Me again
Still having problems with forms not sending variables, and session
variables dissapearing.
I have 2 systems, one older 4.0.3 PHP which is my main webserver, so all
scripts must comply with it...
And the other my development server with the latest 4.1.2
So, I'm trying to write scrip
on my newer system?
Thanks
On Mon, 2002-08-12 at 21:17, Rasmus Lerdorf wrote:
> If register_globals is known to be on, why are you worrying about
> the $HTTP_* arrays?
>
> On 12 Aug 2002, Petre Agenbag wrote:
>
> > Hi
> > Me again
> >
> > Still having pr
m I making sense?
On Mon, 2002-08-12 at 21:17, Rasmus Lerdorf wrote:
> If register_globals is known to be on, why are you worrying about
> the $HTTP_* arrays?
>
> On 12 Aug 2002, Petre Agenbag wrote:
>
> > Hi
> > Me again
> >
> > Still having probl
> need to use $HTTP_SESSION_VARS when setting the variables, you only need
> to use it when retrieving them. So, instead of echo $a and echo $b you
> would have:
>
> echo $HTTP_SESSION_VARS['a'];
> echo $HTTP_SESSION_VARS['b'];
>
> Or, of course in
I'm going mad.
I've been trying to implement sessions so it will work backward on my
older 4.0.3 server ( I'm working on a 4.1.2), with no success as of yet,
but I think it's my 4.1.2 that's causing this, as the app in the
following example works perfectly on the older one.
Note, I have explicit
Hi
Can someone please tell me what settings to check for on 4.1.2 in order
to ensure that scripts that runs on 4.0.4 will run on 4.1.2?
I HAVE checked registered_globals = on, but I still get variables that
are not passed on via URL and form submits.
The app has a "login" form that submits to an
Yes, phpinfo() returns that register globals is ON...
On Tue, 2002-08-20 at 11:52, Thies C. Arntzen wrote:
> On Tue, Aug 20, 2002 at 11:28:55AM +0200, Petre Agenbag wrote:
> > Hi
> > Can someone please tell me what settings to check for on 4.1.2 in order
> > to ensure that
at 12:01:24PM +0200, Petre Agenbag wrote:
> > Yes, phpinfo() returns that register globals is ON...
>
> and does a simple testpage work?
>
>
> test.php
> echo $hallo;
> ?>
>
> http://localhost/test.php?hallo=test
>
>
Hi
I would like to do something like the following:
I have a table that contains a bunch of info at various "stages". To
optimize the load on the db, I was thinking it would be better to do a
"select * from table" , and then use PHP to sort through the results,
rather than have 3 SQL's with "wher
Actually, it's not accurate for me to say "stepping through an array
more than once", as I want to step through the database ( $result) more
than once, without having to make connections to the db again.
Can this be done?
On Wed, 2002-08-28 at 13:58, Petre Agenbag wrote:
> Hi
ING. The nature of
> what you want to achieve with this script is conducive to using three
> separate queries.
>
> I know less queries == faster, but it's not always the case, and not always
> worth worrying about, unless you've got a HUGE site with millions of
input!
On Thu, 2002-08-29 at 08:46, Jason Wong wrote:
> On Thursday 29 August 2002 14:16, Petre Agenbag wrote:
> > Hi Justin
> > OK, a quick feedback on your previous suggestion:
> >
> > I tried to unset the $myrow_it, but it still didn't produce any output.
> &
August 2002 14:16, Petre Agenbag wrote:
> > Hi Justin
> > OK, a quick feedback on your previous suggestion:
> >
> > I tried to unset the $myrow_it, but it still didn't produce any output.
> > The only way I could get it to work was with the same method you
> &g
Hi
I am wondering if it is possible to write/create/implement an
"autocomplete" type list box, something that will basically work the
same as when you have a normal textbox in a form and have "autocomplete"
enabled in the browser, but not quite exactly, I want the textbox and
the listbox to be "co
put the exec(...) line OUTSIDE the while loop.As your codeis now, it's
dumping with each new row , so i'ts overwriting itself.
On Mon, 2002-09-02 at 09:47, [EMAIL PROTECTED] wrote:
>
> I am having a problem with a script to dump a mysql database to a text
> file. When I run the command below it
I think it would probably be better to read all the id's into an array,
and then use the array stepping functions to move forward or back. This
way, you won't have to worry about "empty" rows, or id's that are not
numerically following on each other.
On Thu, 2002-09-05 at 23:20, tux wrote:
>
> h
Hi list
Is is possible to change the default behaviour of the mail() function to
send the message to the queue instead of trying to send it immediately?
I did do some research into this a while back, but it never really got
to a point where I was completely satisfied with the results. I can
recal
You need to add another header telling it the content type = text/html
On Wed, 2002-09-25 at 17:04, usha wrote:
> I just want to email a dynamic page ( So I designed a page consisting of datas
>pulled from db and are formated with html tags: here in below code $d is such
>variable to be mailed
Hi
I need to be able to see logs of all mysql queries from php scripts on
my server.
I have a multitude of virtual hosts on my RedHat server, with many mysql
db's, and would like to be able to see what queries are done against the
db's from which scripts. The reason being is that I suspect that so
Hi
The manual states:
$pizza = "piece1 piece2 piece3 piece4 piece5 piece6";
$pieces = explode(" ", $pizza);
So, if I want to be able to echo piece1 to the screen at a later stage,
I would go:
echo $pieces[0];
or
$first_piece = $pieces[0];
echo $first_piece;
Right?
Just want to make sure I un
1 - 100 of 124 matches
Mail list logo