from the database
> sorted by ItemCode and then displayed in a form as shown above.
You need to use one of the mysql_fetch_*() functions. See examples in manual.
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting
a known virus is enough for the misconfigured content-filtering
software to step in and reject the message.
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intranet Applications Development *
/*
I fi
lect as well. Any you can use this format, which
IMHO, is a lot easier on the eyes:
$sql = "INSERT INTO `guest`
SET `title` = '$title',
`first_name` = '$first_name',
...,
...,
e used to make a page where they correct there
> mistakes.
There are some classes in www.phpclasses.org which helps you validate forms.
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intranet
eed to to output HTML which will resize windows, hide buttons,
make the tea or whatever.
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intranet Applications Development *
/*
I'm having BEA
n't have a crontab job running to clean them up
> from time to time automatically. I need to know how uploaded files are
> managed by PHP server. Any such information on line?
The manual?
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integr
On Thursday 12 December 2002 09:22, BABA Yoshihiko wrote:
> Jason Wong wrote:
> > Not sure why you're escaping the single quote. It's unnecessary -- and I
> > suspect you mis-escaped $select as well. Any you can use this format,
> > which IMHO, is a lot easier on t
7;$price',
> description = '$description'
>shortdesc = '$shortdesc'
> where ItemCode='$oldItemCode'";
You seem to be missing a comma after --> description = '$description'
--
Jason Wong ->
k along with a few perl scripts that send mail as well.
> Here is the code I am using
>
> mail("[EMAIL PROTECTED]", "testing 1234", "this is a test message");
> ?>
If you get no php errors, try looking at your mailserver logs.
--
Jason Wong ->
whitelisting feature where you can manually add people/lists from whom you
definitely want to receive mail. In that case, as always, it's another case
of user misconfiguration/ignorance.
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integra
#x27;$price',
> description = '$description',
>shortdesc = '$shortdesc',
> where ItemCode='$oldItemCode'";
> $result = mysql_query($query);
You've got an extra comma after '$shortdesc
;];
> }
>//Reset $result - SQL result
> }
Read all the results into an array first, then you can print it out as many
times as you like from the array.
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design &
s
have been fallen for it.
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intranet Applications Development *
/*
Its name is Public Opinion. It is held in reverence. It settles everything.
Som
t;, see
manual for details.
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intranet Applications Development *
/*
Support bacteria -- it's the only culture some people have!
*/
--
PHP Ge
ore, pls enlighten me):
There's a class called phpmailer at www.phpclasses.org which allows you to
send html mail along with image attachments which appear within the mail
(depending on your mail client).
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software
depends on your mailserver, eg with sendmail you can its alias
mechanism, with qmail you can use dot-qmail files.
But I'm not sure how you would process "access.db" assuming that it is a file
created by MS Access.
--
Jason Wong -> Gremlins Associates -> www.gremlins.bi
tion.
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intranet Applications Development *
/*
The debate rages on: Is PL/I Bachtrian or Dromedary?
*/
--
PHP General Mailing List (http://www.p
the ftp part which I cant do.
>
> Is there a reference on how to pull out the email from qmail? I am new to
> this concept.
Have a look at this thread first:
http://marc.theaimsgroup.com/?l=php-general&m=103757608904303&w=2
--
Jason Wong -> Gremlins Associates -> ww
is doable?
Yep, even without php. Just ask people to point their browser at your ftp
site!
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intranet Applications Development *
/*
One learns
a diverse range of browsers (NN, IE, Mozilla, Opera,
Konqueror).
Could you provide me with an example where your upload would not work without
that "missing bit"?
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hos
to the PHP
> script.
I think that is browser-dependent. For example, for NN (4.x) I think it was
64K.
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intranet Applications Development *
/*
I
Doesn't fusebox have it's own mailing list where you can ask questions? If so
wouldn't that be a better place to do so?
In answer to the question in your subject:
http://marc.theaimsgroup.com/?l=php-general&m=103964196113392&w=2
--
Jason Wong -> Gremlins Associates ->
in C:\Apache2\htdocs\mymail.php on line 22 Any ideas?
The smtp server specified in php.ini does not allow you to send mail.
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intranet Applications Develo
your case you're quoting an urban legend ;-)
I would really like to hear of a case where an upload fails *just because of*
not putting in that hidden element. I've asked on the list before but never
got any definite responses.
--
Jason Wong -> Gremlins Associates -> www.gremlins
h the archives for problems
related to file uploads, invariably someone would suggest adding
MAX_FILE_SIZE. To me, I think it's a load of cobblers, unless someone can
show me otherwise :)
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
On Saturday 14 December 2002 17:19, John Taylor-Johnston wrote:
> I did call session_start() before anything is output to the browser.
> http://www.php.net/manual/en/function.session-start.php
>
> I only have one php file so I know I'm recyling my code each time:
>
> session_name("TestALS");
> sess
On Saturday 14 December 2002 23:57, Javier wrote:
> [EMAIL PROTECTED] (Jason Wong) wrote in
> [EMAIL PROTECTED]:">news:[EMAIL PROTECTED]:
>
> Hi, sorry that I didn't make it clear.
> I'm looking for an alternative to php-fusebox.
For processing of forms,
dy+(int)($ypad/2), $white,
> "/home/xelerix/public_html/font/fonts/04B_03__.TTF", $text);
>
> imagepng($im);
>
> ImageDestroy($im);
>
> ?>
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design &am
send the appropriate headers beforehand.
Search archives for details.
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intranet Applications Development *
/*
The doctrine of human equality repose
_id value of the course I just added in a a variable, and I don't
> know how to retrieve that variable.
If you're using MySQL you can use mysql_insert_id(). If you're using some
other DBMS then have a look at the manual to see whether there is a similar
function.
--
Jason Wong -&g
; "10 things I hate about you",
> "Ten Things That I Hate About You",
> "10 Things That I Hate About You",
> "Ten things that I hate about you",
> "10 things that I hate about you",
> "ten things I hate about you");
esn't standard GIF only have 8 bit (256 colours)?
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intranet Applications Development *
/*
Lie, n.:
A very poor substitute for the truth, b
ore, nothing less.
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intranet Applications Development *
/*
Better tried by twelve than carried by six.
-- Jeff Cooper
*/
--
PHP
gistering with us /n"
> ."http://www.oursite.com";;
>
> But in the actual e-mail sent, the link was plain text,not a link. Can I
> force it to be a link?
If you're sending an HTML email then you have to write the links yourself ("http://www.example.com rath
T_VARS['userfile'];
> => C:\\Documents and Settings\\Administrator\\Desktop\\IR Files\\gmp1.ir
Better to use $_POST.
> echo $userfile;
> => C:\\Documents and Settings\\Administrator\\Desktop\\IR Files\\gmp1.ir
>
> echo $HTTP_POST_VARS['userfile']['name'
monthschedule[6];
>
> nothing comes up ($r is blank). Any thoughts? There
> are missing elements (4,5,7-12) in $monthschedule.
Use print_r($monthschedule) to see what's really inside the array.
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Syst
uare brackets means logical NOT
2) A period (.) means "any character". If you want to match a literal period
you need to escape it using a backslash.
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Host
s way, you don't
have to worry about what MTA your host is using, and does away with the need
to install extra software.
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intranet Applications Deve
ludes/img.class.php on line 56
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intranet Applications Development *
/*
What you don't know can hurt you, only you won't know it.
*/
,}");
> //Produces array of "-_-_---","--_-_--","-_"
preg_match()
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intranet Applications Development *
/*
America may be unique
.
$query = "INSERT INTO testals VALUES ($part1,...
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intranet Applications Development *
/*
I'm sitting on my SPEED QUEEN ... To me, it's E
'5') ) {
>
> and what can i use as an alternative syntex ??
_WHAT_ are you trying to test for?
Trying to read your mind, I would say use AND instead of OR.
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & H
s the
> process returns output I would like it dynamically displayed to the screen.
>
> Any ideas on how I can do this???
Disable output buffering and use flush(). Your mileage may depend upon your
webserver.
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Soft
t
as keywords).
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intranet Applications Development *
/*
When you are in it up to your ears, keep your mouth shut.
*/
--
PHP General Mailing List (http://
gt; network?
>
> for instance, my PHP pages are currently being hosted offsite ... would it
> be possible to direct the uploaded pages to a box that's located at the
> office? something like "192.168.100.41/home/mydirectory" ???
You can use php's ftp functions to transfer
rt that does not seem to work is the bit that does the
> comparison.
'=' is an assignment operator, what you want is '==' which is the equality
operator.
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design &
18:28 +0800
> < From:
> <"Mailer-Daemon" <[EMAIL PROTECTED]>
> < To:
> <[EMAIL PROTECTED]
> <
> < Sorry. Your message could not be delivered to:
> <
> < php-list,emc (The name was not found at the remote site. Check
&g
>} else {
> unlink($dir);
>}
> }
> }
>
> delete ($c_dir);
To summarise -- there is no delete() function in php, the delete() function
you're using is a user-defined function and as such will do whatever you can
make it do.
--
Jason Wong -> Gremlins Ass
pdated field. What am I doing wrong? He is my code:
We won't know what you're doing wrong if you don't tell us what the problem
is. __What happens__ when you run your code? Does the monitor blow up or
what?
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open So
read in the text file
2) use explode(), with "\t" as the delimiter to split each line into their
component parts
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intranet Applications Deve
but I guess you probably want something
like:
mysql_query(...);
$result = mysql_fetch_*(...);
// do something with the 1st record
$result = mysql_fetch_*(...);
// do something with the 2nd record
...
...
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open So
s the
> first page:
So what's the difference between the two servers?
> My PHP.ini file is standard to a RedHat RPM install, but I will include it
> as an attachment.
I don't think you can send attachments to the list. Examine the php.ini on
both servers and play &qu
;& $b != 124): Nope, this doesn't appear to work
> either.
> do sum stuff;
> break;
>
> endswitch;
AFAICS all of them should work. The 2nd case may not work the way you
intended. It is testing for, if $a is TRUE, AND if $b equals 124.
Where are you gett
le bunch of if-then-else statements.
For one thing it looks (IMO) a lot neater.
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intranet Applications Development *
/*
Beware of bugs in the above co
is your problem, but one thing which can cause this is
when your browser is set to reject cookies and the page tries to set a cookie
and redirects to itself to read the cookie which it tried to set, it doesn't
find it so it sets it again and redirects ... until you get the error
message.
--
dea. What's to stop people who haven't logged in
from adding/setting their own clientid?
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intranet Applications Development *
/*
I got vi
y of the main loop.
You must have some other problem. Crank up the error reporting and look at the
error log.
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intranet Applications Development
t
started out) -- you don't stripslashes() when retrieving the data. The
slashes that were added with addslashes() are _not_ stored when the data is
inserted.
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design &
e a form where users input numbers only, is there a way I can have php
> check to make sure a letter or other character didn't get put in by
> accident. I was looking at ereg, but not to familiar with this or if it
> would work in this case.
Try this:
http://www.phpclasses.org/brow
to differentiate between an empty-string read (a blank line in a
> flat-file) and a FALSE return from fgets() ??
Your code is probably incorrect. Does the example for fgets() in the manual
work for you?
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Softwar
ng from eg DOS -> Unix, and vice-versa.
If you're uploading the file via an HTML form then you're getting the file
unchanged.
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intra
d of each string...
fwrite() only writes what you tell it to write ...
> Is there a simple way to get rid of this blank line or somehow get fwrite()
> to NOT put a newline on the end of a string?
... so it must be your code which is putting it there? Please post your code.
--
Jason Won
or a field that is a string and consist of a \Z
> > character! not more not less. I don't understand if this is what you want
> > or you want to find all fields that CONTAIN a \Z in any position. In this
> > case the correct query would be
> >
> > select id,PVLN fr
On Monday 23 December 2002 14:26, Centaur zeus wrote:
> Is there some common utilities recommended ?
ImageMagick
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intranet Applications Developme
you should NOT be including via URL but via the
local filesystem:
include('local/filesystem/path/to/common.php');
What does common.php do anyway? There is a whole world of difference between
including a file via URL and via filesystem.
--
Jason Wong -> Gremlins Associates -&g
On Monday 23 December 2002 13:06, Alexandre Soares wrote:
> Hi All,
>
> Where I can get more information about a free library to plot 2d
> and 3d data information,
google for jpgraph
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems
preg_replace. Just use a simple substr_replace() or similar.
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intranet Applications Development *
/*
She ran the gamut of emotions from 'A
f last item of an array is one less than the total
> number of elements in the array.
>
> $num_elements = count( $cat_data );
> $last_element = $cat_data[$num_elements-1][0];
> // 0 being what you were seeking
Or, if you don't need to keep $cat_data intact, you can use array_pop().
use the normal function of $row[title] I get field from
> the "site_services" table but I cannot work out how to get the
> "site_servicescat" title field. I have tried $row[cat.title] but all I
> get is errors.
>
> Any help would be really appreciated as I th
On Saturday 28 December 2002 17:49, Peter Lavender wrote:
> Hi everyone,
>
> I have a nubmer: 4.1 but I only want the whole number 4, even if it's
> 4.9, so this rules out using round (Unless I missed a parameter).
>
> How could I do this.. I'm drawing a blank
://localhost/ and nothing comes up except a "This page cannot be
> displayed" thing since I'm using IE. Any ideas why this is happening?
Turn on error reporting and log to file and examine it for any clues.
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Sourc
ge refresh how different is that to the
'one page and use a "middle-man" technique'?
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intranet Applications Development *
/*
If *I
irect method, the back button takes him to the redirect. Still trying to
> figure that one out. Would be nice to make the browser history "forget"
> that redirect. :-P
I don't think a server redirect shows up on the browser's history list! Try
it.
--
Jason Wong ->
rray.
> * For PGSQL, you can get the database name, the field name
> even the *host name* but you can't get the table name from a
> particular query?
Not sure what you're getting at here. Surely for any particular query, _you_
would know what table(s) is/are being used?
--
Jas
#x27;ve lost me. In your OP you say you wanted the "table name", but now
you're talking about the "dbname"? For dbname, you can use (oddly enough)
pg_dbname().
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design &a
On Monday 30 December 2002 19:11, Rick Widmer wrote:
> At 06:20 PM 12/30/02 +0800, Jason Wong wrote:
> >On Monday 30 December 2002 18:13, Boget, Chris wrote:
> > > I'm switching from a MySQL environment to PGSQL and I'm
> > > going through and trying to learn
defined in the specified database. It cannot "get the
table name for the query that was just run...". And another thing, you _know_
the query "that was just run", and presumably the tables used is part of the
query itself, so why would you need another functio
mp.
If you've got legacy data which are stored as unix timestamps then you can do
one of the following:
1) Do a one time conversion from unix timestamp to pg date/time
2) Manipulate the dates in PHP instead
3) Write your own function in pg to convert them on the fly
--
Jason Wong -> Gre
nside your function come from? It
> doesn't appear that you've instantiated it.
Specifically, if it's instantiated elsewhere in your code and it's in the
global scope then you need to declare it as global within your function:
function setCurrentDevGroup($devID) {
global $
> '--enable-mm=shared' '--enable-xml' '--enable-ftp' '--disable-debug'
> '--with-libdir=/usr/lib' '--with-ldap' '--with-imap-ssl'
> '--with-pdflib=shared'
>
> Can you tell me what's required for JPG Support?
t is in the function.
Hmm, whenever you post code to the list you should *always* (where possible)
copy and paste. If the code that you post is different to that which you are
actually running then it makes it difficult for people to help you.
So if you can, could you please post your complete un
rn $lookuptable;
> }
But something like:
echo setCurrentDevGroup($devID);
gives the wrong/no value? If so, could you show how you are using this
function in your code?
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Desig
at least.
> My understanding was that the function would return a value for
> $lookuptable which was useable in the code above. This is incorrect then?
If you want it so that the value of $lookuptable (in the global scope) is
changed when you call your function then you have to do something like:
ning on that same server? If not
then you'll have to do the obvious, ie either install an SMTP server, or
point php.ini to a valid server.
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intra
OM table?
>
> There seems to be very little information anywhere on DISTINCT
This looks suspiciously like a MySQL question, better to ask on the mysql
list.
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design &
You can use something like:
DELETE FROM table WHERE column IN (val1, val2, val3, ..., valN);
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intranet Applications Development *
/*
Most people
gt; Is the a "--with-sendmail-path" option or something like that?
qmail comes with a wrapper called sendmail which emulates sendmail. I'm not
sure where php's configure expects to find sendmail but you can try
copying/linking the wrapper to /usr/lib and/or /usr/sbin.
--
TE statement can only delete
from a single table.
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intranet Applications Development *
/*
"You show me an American who can keep his mo
a page -- it is supposed to redisplay the page from the cache. Buggy
browsers like NN, IE & Mozilla etc reloads the page. Well behaved browsers
like Opera redisplays from cache and hence your problem.
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Syste
quot;);
> ?>
If you use Opera to access your application, does the BACK button allow you to
see previously viewed 'secure' pages after being logged out?
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Host
t;My Name" as Bcc recipients are not
displayed. Thus:
"Bcc: [EMAIL PROTECTED]\r\n"
would be adequate.
If you really want to include a name with the email address then the correct
format is:
"Bcc: \"My Name\" <[EMAIL PROTECTED]>\r\n"
--
Jason Wong ->
uld've been much quicker than asking on the list?
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intranet Applications Development *
/*
The verdict of a jury is the a priori opinion of tha
a new thread. To achieve this,
click on "New message" instead of "Reply" within your mail client, and enter
the list address as the recipient. You can save the list address in your
address book for convenience.
--
Jason Wong -> Gremlins Associates -> www.gremlins.bi
id in IE6, echos 0 in Mozilla ???
> echo(" la la la $session_id>");
... probably because Mozilla is not accepting cookies?
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & In
gt;
> Presently, these are set to 1008M and 1006M respectively, and a file of
> size 620K still gives me a "413 Error - Request Entity Too Large."
Search the archives for "Request Entity Too Large"
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Sour
gt; NNTP server and insert them into a MySQL DB?
Try searching:
www.phpclasses.org
www.hotscripts.com
www.phpbuilder.net
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intranet Application
ures, you may have people registering multiple times to cast multiple
votes.
In short there is no surefire way of preventing people from voting more than
once.
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting
() redirect.
Try this:
if (not_lowercase) {
insert_into_db();
header();
die();
}
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intranet Applications Development *
/*
because
utting the insert code into an else statment solved the
> problem, but it's ugly, and the question still remains... why does it do
> this?
It cannot continue after a die(), unless there's a bug in PHP. If you still
think that it does then post your full code and the circumstances un
y and possibly the full path
to ncMailer.py as well.
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intranet Applications Development *
/*
The profession of book writing makes horse racing see
101 - 200 of 3372 matches
Mail list logo